You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|
|
|