Skip to content

Commit

Permalink
fix: Ensure both priave ca certs configmaps have default names (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppawlowski committed Feb 8, 2024
2 parents 97df5c8 + 737918b commit b3cd583
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helm/flowforge/templates/private-ca.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ data:
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Values.forge.privateCA.configMapName }}
name: {{ .Values.forge.privateCA.configMapName | default "ff-ca-certts" }}
namespace: {{ .Values.forge.projectNamespace | default "flowforge" }}
labels:
{{- include "forge.labels" . | nindent 4 }}
data:
chain.pem: |
{{ toYaml .Values.forge.privateCA.certs | b64dec | indent 4}}
{{- end -}}
{{- end -}}

0 comments on commit b3cd583

Please sign in to comment.