Commit 4abf36ff authored by Waqar Ahmed's avatar Waqar Ahmed

Remove minoi/mc configurable options

parent 8d5bad11
...@@ -137,9 +137,6 @@ The following table lists the configurable parameters of the MinIO chart and the ...@@ -137,9 +137,6 @@ The following table lists the configurable parameters of the MinIO chart and the
| `image.tag` | MinIO image tag. Possible values listed [here](https://hub.docker.com/r/minio/minio/tags/). | `RELEASE.2020-11-06T23-17-07Z` | | `image.tag` | MinIO image tag. Possible values listed [here](https://hub.docker.com/r/minio/minio/tags/). | `RELEASE.2020-11-06T23-17-07Z` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` | | `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `imagePullSecrets` | List of container registry secrets | `[]` | | `imagePullSecrets` | List of container registry secrets | `[]` |
| `mcImage.repository` | Client image repository | `minio/mc` |
| `mcImage.tag` | mc image tag. Possible values listed [here](https://hub.docker.com/r/minio/mc/tags/). | `RELEASE.2020-10-03T02-54-56Z` |
| `mcImage.pullPolicy` | mc Image pull policy | `IfNotPresent` |
| `trustedCertsSecret` | Kubernetes secret with trusted certificates to be mounted on `{{ .Values.certsPath }}/CAs` | `""` | | `trustedCertsSecret` | Kubernetes secret with trusted certificates to be mounted on `{{ .Values.certsPath }}/CAs` | `""` |
| `mode` | MinIO server mode (`standalone` or `distributed`) | `standalone` | | `mode` | MinIO server mode (`standalone` or `distributed`) | `standalone` |
| `extraArgs` | Additional command line arguments to pass to the MinIO server | `[]` | | `extraArgs` | Additional command line arguments to pass to the MinIO server | `[]` |
......
...@@ -54,8 +54,8 @@ spec: ...@@ -54,8 +54,8 @@ spec:
serviceAccountName: {{ include "minio.serviceAccountName" . | quote }} serviceAccountName: {{ include "minio.serviceAccountName" . | quote }}
containers: containers:
- name: minio-mc - name: minio-mc
image: "{{ .Values.mcImage.repository }}:{{ .Values.mcImage.tag }}" image: "minio/mc:latest"
imagePullPolicy: {{ .Values.mcImage.pullPolicy }} imagePullPolicy: IfNotPresent
command: ["/bin/sh", "/config/initialize"] command: ["/bin/sh", "/config/initialize"]
env: env:
- name: MINIO_ENDPOINT - name: MINIO_ENDPOINT
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment