mirror of
https://github.com/minio/minio.git
synced 2024-12-25 22:55:54 -05:00
15 lines
303 B
YAML
15 lines
303 B
YAML
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
|