diff --git a/examples/minioinstance-kes.yaml b/examples/minioinstance-kes.yaml index 9c33ec9bd2a..e3fa73d4d7e 100644 --- a/examples/minioinstance-kes.yaml +++ b/examples/minioinstance-kes.yaml @@ -29,6 +29,9 @@ spec: - port: 9000 targetPort: 9000 protocol: TCP + # Optional field + # By default and for convenience, the Kubernetes control plane will allocate a port from a range (default: 30000-32767) + # nodePort: 30007 selector: app: minio --- @@ -64,9 +67,9 @@ spec: ## Number of MinIO servers/pods in this zone. ## For standalone mode, supply 1. For distributed mode, supply 4 or more. ## Note that the operator does not support upgrading from standalone to distributed mode. - servers: 16 + servers: 4 ## Supply number of volumes to be mounted per MinIO server instance. - volumesPerServer: 1 + volumesPerServer: 4 ## Mount path where PV will be mounted inside container(s). Defaults to "/export". mountPath: /export ## Sub path inside Mount path where MinIO starts. Defaults to "". diff --git a/examples/minioinstance-mcs.yaml b/examples/minioinstance-mcs.yaml index bbf86b6ee07..94b37aee079 100644 --- a/examples/minioinstance-mcs.yaml +++ b/examples/minioinstance-mcs.yaml @@ -29,6 +29,9 @@ spec: - port: 9000 targetPort: 9000 protocol: TCP + # Optional field + # By default and for convenience, the Kubernetes control plane will allocate a port from a range (default: 30000-32767) + # nodePort: 30007 selector: app: minio --- @@ -64,9 +67,9 @@ spec: ## Number of MinIO servers/pods in this zone. ## For standalone mode, supply 1. For distributed mode, supply 4 or more. ## Note that the operator does not support upgrading from standalone to distributed mode. - servers: 16 + servers: 4 ## Supply number of volumes to be mounted per MinIO server instance. - volumesPerServer: 1 + volumesPerServer: 4 ## Mount path where PV will be mounted inside container(s). Defaults to "/export". mountPath: /export ## Sub path inside Mount path where MinIO starts. Defaults to "". diff --git a/examples/minioinstance.yaml b/examples/minioinstance.yaml index b400006db01..1ee527d67bf 100644 --- a/examples/minioinstance.yaml +++ b/examples/minioinstance.yaml @@ -35,8 +35,8 @@ spec: ## Add metadata to the all pods created by the StatefulSet metadata: ## Optionally pass labels to be applied to the statefulset pods - #labels: - # app: minio + labels: + app: minio annotations: prometheus.io/path: /minio/prometheus/metrics prometheus.io/port: "9000" @@ -50,9 +50,9 @@ spec: ## Number of MinIO servers/pods in this zone. ## For standalone mode, supply 1. For distributed mode, supply 4 or more. ## Note that the operator does not support upgrading from standalone to distributed mode. - servers: 16 + servers: 4 ## Supply number of volumes to be mounted per MinIO server instance. - volumesPerServer: 1 + volumesPerServer: 4 ## Mount path where PV will be mounted inside container(s). Defaults to "/export". mountPath: /export ## Sub path inside Mount path where MinIO starts. Defaults to "".