X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=charts%2Ftemplates%2Fdeployment.yaml;h=bcc8dc95dca1f1a10be64280f243c91321417ae3;hb=51aeaa3c3808c2288ab29d0b227fb04759f17aca;hp=194ca7e1976db95bd52c1baa63973116e9db9a1b;hpb=94e6f93c3434e5f9a9529246d97d2666a2479299;p=pti%2Fo2.git diff --git a/charts/templates/deployment.yaml b/charts/templates/deployment.yaml index 194ca7e..bcc8dc9 100644 --- a/charts/templates/deployment.yaml +++ b/charts/templates/deployment.yaml @@ -153,14 +153,18 @@ spec: mountPath: /configs/o2app.conf subPath: config.json readOnly: true - - name: caconfig - mountPath: /configs/ca.cert + - name: servercrt + mountPath: /configs/server.crt subPath: config.json readOnly: true - - name: serverkeyconfig + - name: serverkey mountPath: /configs/server.key subPath: config.json readOnly: true + - name: smocacrt + mountPath: /configs/smoca.crt + subPath: config.json + readOnly: true - name: helmcli image: "{{ .Values.o2ims.image.repository }}:{{ .Values.o2ims.image.tag }}" ports: @@ -184,10 +188,12 @@ spec: name: {{ .Chart.Name }}-application-config name: applicationconfig - configMap: - name: {{ .Chart.Name }}-serverkeyconfig - name: serverkeyconfig + name: {{ .Chart.Name }}-serverkey + name: serverkey - configMap: - name: {{ .Chart.Name }}-caconfig - name: caconfig + name: {{ .Chart.Name }}-servercrt + name: servercrt + - configMap: + name: {{ .Chart.Name }}-smocacrt + name: smocacrt --- -