Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bugfix] Fix minio mc app version for velero chart #273

Merged
merged 1 commit into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/velero-s3-deployment/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "1.0"
description: A Helm chart for Velero S3 deployment, this chart holds resources used by Velero with a deployment to mirror the local object storage to a remote object storage.
name: velero-s3-deployment
version: 0.3.1
version: 0.3.2
sources: ["https://github.com/RADAR-base/radar-helm-charts/tree/main/charts/velero-s3-deployment"]
deprecated: false
type: application
Expand Down
4 changes: 2 additions & 2 deletions charts/velero-s3-deployment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# velero-s3-deployment
[![Artifact HUB](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/velero-s3-deployment)](https://artifacthub.io/packages/helm/radar-base/velero-s3-deployment)

![Version: 0.3.1](https://img.shields.io/badge/Version-0.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0](https://img.shields.io/badge/AppVersion-1.0-informational?style=flat-square)
![Version: 0.3.2](https://img.shields.io/badge/Version-0.3.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0](https://img.shields.io/badge/AppVersion-1.0-informational?style=flat-square)

A Helm chart for Velero S3 deployment, this chart holds resources used by Velero with a deployment to mirror the local object storage to a remote object storage.

Expand Down 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
Loading