Skip to content

Commit

Permalink
Fix minio mc app version for velero chart
Browse files Browse the repository at this point in the history
  • Loading branch information
pvannierop committed Oct 17, 2024
1 parent 765954a commit e2b75f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/velero-s3-deployment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ A Helm chart for Velero S3 deployment, this chart holds resources used by Velero
|-----|------|---------|-------------|
| objectStorageBackupReplicaCount | int | `1` | Number of replicas for object storage backup pod, should be 1 |
| mc_image.repository | string | `"minio/mc"` | Object storage backup pod image repository |
| mc_image.tag | string | `nil` | Object storage backup pod image tag (immutable tags are recommended) Overrides the image tag whose default is the chart appVersion. |
| mc_image.tag | string | `"RELEASE.2022-07-06T14-54-36Z"` | Object storage backup pod image tag (immutable tags are recommended) Overrides the image tag whose default is the chart appVersion. |
| mc_image.pullPolicy | string | `"IfNotPresent"` | Object storage backup pod image pull policy |
| imagePullSecrets | list | `[]` | Docker registry secret names as an array |
| podSecurityContext | object | `{}` | Configure object storage backup pod pods' Security Context |
Expand Down
2 changes: 1 addition & 1 deletion charts/velero-s3-deployment/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
- name: intermediate
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.mc_image.repository }}:{{ .Values.mc_image.tag | default .Chart.AppVersion }}"
image: "{{ .Values.mc_image.repository }}:{{ .Values.mc_image.tag }}"
env:
- name: MC_HOST_local
value: "http://{{ .Values.local.accessKey }}:{{ .Values.local.secretKey }}@{{ .Values.local.address }}"
Expand Down
2 changes: 1 addition & 1 deletion charts/velero-s3-deployment/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mc_image:
repository: minio/mc
# -- Object storage backup pod image tag (immutable tags are recommended)
# Overrides the image tag whose default is the chart appVersion.
tag:
tag: RELEASE.2022-07-06T14-54-36Z
# -- Object storage backup pod image pull policy
pullPolicy: IfNotPresent

Expand Down

0 comments on commit e2b75f4

Please sign in to comment.