summaryrefslogtreecommitdiffstats
path: root/kubernetes/cds/charts/cds-ui/templates/deployment.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'kubernetes/cds/charts/cds-ui/templates/deployment.yaml')
-rw-r--r--kubernetes/cds/charts/cds-ui/templates/deployment.yaml16
1 files changed, 16 insertions, 0 deletions
diff --git a/kubernetes/cds/charts/cds-ui/templates/deployment.yaml b/kubernetes/cds/charts/cds-ui/templates/deployment.yaml
index 4d3d8347db..a0774ec859 100644
--- a/kubernetes/cds/charts/cds-ui/templates/deployment.yaml
+++ b/kubernetes/cds/charts/cds-ui/templates/deployment.yaml
@@ -52,6 +52,13 @@ spec:
initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
periodSeconds: {{ .Values.liveness.periodSeconds }}
{{ end }}
+ command:
+ - sh
+ args:
+ - -c
+ - |
+ echo "cadi_keystore_password_p12=$PASSPHRASE_VALUE" > .enc
+ node .
env:
- name: HOST
value: 0.0.0.0
@@ -71,6 +78,10 @@ spec:
value: "{{ .Values.config.api.processor.grpc.port }}"
- name: API_BLUEPRINT_PROCESSOR_GRPC_AUTH_TOKEN
value: {{ .Values.config.api.processor.grpc.authToken }}
+ - name: KEYSTORE
+ value: "/certs/org.onap.sdnc-cds.p12"
+ - name: PASSPHRASE_VALUE
+ {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cds-certs-pass" "key" "password") | indent 14 }}
readinessProbe:
tcpSocket:
port: {{ .Values.service.internalPort }}
@@ -80,6 +91,8 @@ spec:
- mountPath: /etc/localtime
name: localtime
readOnly: true
+ - mountPath: /certs
+ name: certs
resources:
{{ include "common.resources" . | indent 12 }}
{{- if .Values.nodeSelector }}
@@ -94,5 +107,8 @@ spec:
- name: localtime
hostPath:
path: /etc/localtime
+ - name: certs
+ secret:
+ secretName: {{ include "common.fullname" . }}-certs
imagePullSecrets:
- name: "{{ include "common.namespace" . }}-docker-registry-key"