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
...
- mountPath: /opt/onap/appc/data/stores/org.onap.appc.p12
name: {{ include "common.name" .}}org.onap.appc.p12-certs
subPath: org.onap.appc.p12
...
Add the following lines in templates/statefulset.yaml under volumes:
- name : {{ include "common.name" . }}org.onap.appc.p12-certs
configMap:
name: {{ include "common.fullname" . }}-certs
...