1
0
mirror of https://github.com/minio/minio.git synced 2025-03-20 12:34:16 -04:00
minio/docs/orchestration/kubernetes-yaml/minio-standalone-service.yaml
Nitish Tiwari 8c08571cd9
Update Kubernetes example yaml files ()
Removed the non production ready Kubernetes constructs that are not needed
for standard Minio deployment. General cleanup of the documents.
2017-12-12 10:29:00 +05:30

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