Skip to content

Commit

Permalink
Update TLS secrets in ingress template and values.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Flagro committed Mar 3, 2024
1 parent e6fa372 commit 6138835
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions helm/templates/ingress/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ metadata:
{{- include "flatchart.labels" . | nindent 4 }}
type: kubernetes.io/tls
data:
tls.crt: {{ .Files.Get .Values.tlsSecrets.certFile | b64enc | quote }}
tls.key: {{ .Files.Get .Values.tlsSecrets.keyFile | b64enc | quote }}
tls.crt: {{ .Values.tlsSecrets.crt | b64enc | quote }}
tls.key: {{ .Values.tlsSecrets.key | b64enc | quote }}
4 changes: 2 additions & 2 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ backendSecrets:
adminPassword: ""

tlsSecrets:
certFile: "cert.pem"
keyFile: "key.pem"
cert: ""
key: ""

0 comments on commit 6138835

Please sign in to comment.