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

Fix s3-connector 2.3.0 app version #265

Merged
merged 1 commit into from
Oct 11, 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/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) |
| 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
3 changes: 1 addition & 2 deletions charts/s3-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ image:
# -- s3-proxy image repository
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
Loading