...
copy org.onap.appc.p12 file to resources/certs
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" . }}-preload
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
data:
{{ tpl (.Files.Glob "resources/certs/*").AsConfig . | indent 2 }}
Update the statefulset.yaml
Add the following lines in templates/statefulset.yaml under volumeMounts:
...