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_CERTIFICATE_SECRET env var value when using s3gw #466

Closed
wants to merge 2 commits into from
Closed
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
6 changes: 3 additions & 3 deletions chart/epinio/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ dependencies:
version: v0.13.2
- name: s3gw
repository: https://aquarist-labs.github.io/s3gw-charts
version: 0.14.0
digest: sha256:7b80527ba85ac4c5a5eaf9c69bc9802b3d70fba4ac64fe6677db13778e7909c3
generated: "2023-07-25T10:32:27.725169768+02:00"
version: 0.18.0
digest: sha256:49303a8d28090fe267795ba68be9a2190aa1b17f251f499efe733febdaae3278
generated: "2023-08-01T09:55:18.793423699+02:00"
2 changes: 1 addition & 1 deletion chart/epinio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies:
repository: https://aquarist-labs.github.io/s3gw-charts
tags:
- s3gw
version: 0.14.0
version: 0.18.0
description: Epinio deploys Kubernetes applications directly from source code in one
step.
home: https://github.com/epinio/epinio
Expand Down
Binary file removed chart/epinio/charts/s3gw-0.14.0.tgz
Binary file not shown.
Binary file added chart/epinio/charts/s3gw-0.18.0.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion chart/epinio/templates/server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ spec:
value: {{ default "minio-tls" .Values.s3.certificateSecret }}
{{- else if .Values.s3gw.enabled }}
- name: S3_CERTIFICATE_SECRET
value: {{ default "s3gw-cluster-ip-tls" .Values.s3.certificateSecret }}
value: {{ default (printf "%s-%s-cluster-ip-tls" .Release.Name .Release.Namespace) .Values.s3.certificateSecret }}
{{- else if .Values.s3.certificateSecret }}
- name: S3_CERTIFICATE_SECRET
value: {{ .Values.s3.certificateSecret }}
Expand Down
Loading