From c62099a02b34f4c718abd58d74bcbae226d0ee00 Mon Sep 17 00:00:00 2001 From: pvannierop Date: Fri, 11 Oct 2024 12:26:11 +0200 Subject: [PATCH] Fix s3-connector 2.3.0 appversion --- charts/s3-proxy/Chart.yaml | 2 +- charts/s3-proxy/README.md | 4 ++-- charts/s3-proxy/templates/deployment.yaml | 2 +- charts/s3-proxy/values.yaml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/s3-proxy/Chart.yaml b/charts/s3-proxy/Chart.yaml index 98d017f8..bae55583 100644 --- a/charts/s3-proxy/Chart.yaml +++ b/charts/s3-proxy/Chart.yaml @@ -5,7 +5,7 @@ sources: ["https://github.com/gaul/s3proxy"] type: application home: "https://radar-base.org" name: s3-proxy -version: 0.4.1 +version: 0.4.2 maintainers: - email: keyvan@thehyve.nl name: Keyvan Hedayati diff --git a/charts/s3-proxy/README.md b/charts/s3-proxy/README.md index 706c9bc5..955747dd 100644 --- a/charts/s3-proxy/README.md +++ b/charts/s3-proxy/README.md @@ -3,7 +3,7 @@ # s3-proxy [![Artifact HUB](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/s3-proxy)](https://artifacthub.io/packages/helm/radar-base/s3-proxy) -![Version: 0.4.1](https://img.shields.io/badge/Version-0.4.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.3.0](https://img.shields.io/badge/AppVersion-2.3.0-informational?style=flat-square) +![Version: 0.4.2](https://img.shields.io/badge/Version-0.4.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.3.0](https://img.shields.io/badge/AppVersion-2.3.0-informational?style=flat-square) A Helm chart for S3 Proxy. It uses https://hub.docker.com/r/andrewgaul/s3proxy to proxy S3 API requests to any supported cloud provider. For more examples see Find some example configurations at https://github.com/gaul/s3proxy/wiki/Storage-backend-examples. @@ -32,7 +32,7 @@ A Helm chart for S3 Proxy. It uses https://hub.docker.com/r/andrewgaul/s3proxy t |-----|------|---------|-------------| | replicaCount | int | `1` | Number of s3-proxy replicas to deploy | | image.repository | string | `"andrewgaul/s3proxy"` | s3-proxy image repository | -| image.tag | string | `nil` | s3-proxy image tag (immutable tags are recommended) Overrides the image tag whose default is the chart appVersion. | +| image.tag | string | `"sha-85b0f98"` | s3-proxy image tag (immutable tags are recommended) Overrides the image tag whose default is the chart appVersion. | | image.pullPolicy | string | `"IfNotPresent"` | s3-proxy image pull policy | | imagePullSecrets | list | `[]` | Docker registry secret names as an array | | nameOverride | string | `""` | String to partially override s3-proxy.fullname template with a string (will prepend the release name) | diff --git a/charts/s3-proxy/templates/deployment.yaml b/charts/s3-proxy/templates/deployment.yaml index ac6eefe6..a92280d0 100644 --- a/charts/s3-proxy/templates/deployment.yaml +++ b/charts/s3-proxy/templates/deployment.yaml @@ -42,7 +42,7 @@ spec: - name: {{ .Chart.Name }} securityContext: {{- toYaml .Values.securityContext | nindent 12 }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" imagePullPolicy: {{ .Values.image.pullPolicy }} env: - name: S3PROXY_AUTHORIZATION diff --git a/charts/s3-proxy/values.yaml b/charts/s3-proxy/values.yaml index 47c9189e..50c6c2de 100644 --- a/charts/s3-proxy/values.yaml +++ b/charts/s3-proxy/values.yaml @@ -10,7 +10,7 @@ image: repository: andrewgaul/s3proxy # -- s3-proxy image tag (immutable tags are recommended) # Overrides the image tag whose default is the chart appVersion. - tag: + tag: sha-85b0f98 # -- s3-proxy image pull policy pullPolicy: IfNotPresent