X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=charts%2Ftemplates%2Fdeployment.yaml;fp=charts%2Ftemplates%2Fdeployment.yaml;h=09765125b15904340dba7d31758903a436ebb557;hb=562c275195cc03987cbe4bc35fca98364d758c7d;hp=4a108900e2b0b71435add3b8db49a019a459c351;hpb=cf48d1f3e4ad5e8a5ca75cc6f5670b25e6817d8a;p=pti%2Fo2.git diff --git a/charts/templates/deployment.yaml b/charts/templates/deployment.yaml index 4a10890..0976512 100644 --- a/charts/templates/deployment.yaml +++ b/charts/templates/deployment.yaml @@ -49,10 +49,14 @@ spec: value: o2ims123 - name: POSTGRES_USER value: o2ims + - name: PGDATA + value: /var/lib/postgresql/data/pgdata command: ["/bin/bash", "/opt/postgres_start.sh"] volumeMounts: - name: scripts mountPath: /opt + - name: db-pv + mountPath: /var/lib/postgresql/data - name: redis image: redis:alpine ports: @@ -164,6 +168,7 @@ spec: mountPath: /configs/server.key subPath: config.json readOnly: true + {{- if .Values.o2dms.helm_cli_enable }} - name: helmcli image: "{{ .Values.o2ims.image.repository }}:{{ .Values.o2ims.image.tag }}" ports: @@ -177,6 +182,7 @@ spec: volumeMounts: - name: scripts mountPath: /opt + {{- end }} volumes: - name: scripts configMap: @@ -195,4 +201,7 @@ spec: - configMap: name: {{ .Chart.Name }}-smocacrt name: smocacrt + - name: db-pv + persistentVolumeClaim: + claimName: {{ .Chart.Name }}-db-pv ---