Skip to content

Commit

Permalink
Fix s3-connector 2.3.0 appversion
Browse files Browse the repository at this point in the history
  • Loading branch information
pvannierop committed Oct 11, 2024
1 parent 8d4a0be commit c62099a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/s3-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/s3-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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) |
Expand Down
2 changes: 1 addition & 1 deletion charts/s3-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion charts/s3-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit c62099a

Please sign in to comment.