Created
May 8, 2020 05:29
-
-
Save vamsijakkula/0e3158559aa2b35e6199b193a5413799 to your computer and use it in GitHub Desktop.
Minio Service
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Service | |
metadata: | |
# This name uniquely identifies the service | |
name: minio-service | |
spec: | |
type: LoadBalancer | |
ports: | |
- port: 9000 | |
targetPort: 9000 | |
protocol: TCP | |
selector: | |
# Looks for labels `app:minio` in the namespace and applies the spec | |
app: minio |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment