Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

cd kubernetes/appc
mkdir -p resources/certs

...

cadi_keystore_password=enc:4DVUTKvRCCtebQrKskDsuKFIHLzOf2M9XxNOhVIK4xb

to

cadi_keystore_password=enc:tQTHVtbdCuzqrQY1TBRt9SkFL9tCY3OzwbsfaVyAa2dOfZlI0krFOJSBnkm1WdGr

Update the Configmap

Add the following to the end of templates/configmap.yaml

---
apiVersion: v1
kind: ConfigMap
metadata:
     name: {{ include "common.fullname" . }}-certs
     namespace: {{ include "common.namespace" . }}
     labels:
          app: {{ include "common.name" . }}
          chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
          release: {{ .Release.Name }}
          heritage: {{ .Release.Service }}
data:
{{ tpl (.Files.Glob "resources/config/certs/*").AsConfig . | indent 2 }}

...