summaryrefslogtreecommitdiffstats
path: root/kubernetes/cli/templates/deployment.yaml
diff options
context:
space:
mode:
authorjitendra sharma <jitendra.sharma1@huawei.com>2020-04-16 11:57:38 +0530
committerKanagaraj Manickam <kanagaraj.manickam@huawei.com>2020-04-16 22:11:34 +0530
commit948ee22afd4edc1a252902b5121c80eb43823e4c (patch)
tree02f9692f7d06b994289658b9bb174e2e96043137 /kubernetes/cli/templates/deployment.yaml
parentfed211213a75e800e1e9a9cb427e4315d6d7db5a (diff)
Add HTTPS ceritificate in CLI OOM charts
Issue-ID: CLI-265 Signed-off-by: Kanagaraj Manickam <kanagaraj.manickam@huawei.com> Change-Id: I4dc6cf5c9f7e8ec913491ea8580f414ab5ca199f
Diffstat (limited to 'kubernetes/cli/templates/deployment.yaml')
-rw-r--r--kubernetes/cli/templates/deployment.yaml9
1 files changed, 9 insertions, 0 deletions
diff --git a/kubernetes/cli/templates/deployment.yaml b/kubernetes/cli/templates/deployment.yaml
index 64c8968c6c..58fc6663c5 100644
--- a/kubernetes/cli/templates/deployment.yaml
+++ b/kubernetes/cli/templates/deployment.yaml
@@ -51,6 +51,11 @@ spec:
port: {{ .Values.service.internalPort }}
initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
periodSeconds: {{ .Values.readiness.periodSeconds }}
+ volumeMounts:
+ - name: ocomp-pem
+ mountPath: "/etc/lighttpd/ocomp.pem"
+ subPath: ocomp.pem
+ readOnly: true
env:
- name: OPEN_CLI_MODE
value: "{{ .Values.config.climode }}"
@@ -64,5 +69,9 @@ spec:
affinity:
{{ toYaml .Values.affinity | indent 10 }}
{{- end }}
+ volumes:
+ - name: ocomp-pem
+ secret:
+ secretName: ocomp-pem
imagePullSecrets:
- name: "{{ include "common.namespace" . }}-docker-registry-key"