Skip to content

Commit

Permalink
Merge pull request #12 from sqaisar/patch-1
Browse files Browse the repository at this point in the history
Fixing s3 secret name, currently it overrides auth secret
  • Loading branch information
mruoss authored Oct 1, 2024
2 parents 2f6d2dd + 3153375 commit 4c5bdef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ data:
apiVersion: v1
kind: Secret
metadata:
name: {{ printf "%s-auth" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }}
name: {{ printf "%s-s3" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- if .Values.commonAnnotations }}
Expand All @@ -58,4 +58,4 @@ type: Opaque
stringData:
awsAccessKeyId: {{ .Values.livebook.s3.awsAccessKeyId }}
awsSecretAccessKey: {{ .Values.livebook.s3.awsSecretAccessKey }}
{{- end }}
{{- end }}

0 comments on commit 4c5bdef

Please sign in to comment.