From f9908a411572915212746ea4d17d385ed23d4dae Mon Sep 17 00:00:00 2001 From: "puthuparambil.aditya" Date: Mon, 12 Apr 2021 15:29:38 +0100 Subject: [CPS] Bump CPS versions for RC1 bug fixes Bump CPS images to version 1.0.1 to install bug fixes discovered between M3 and RC1. Overview of these can be see in https://jira.onap.org/browse/CPS-319 Issue-ID: CPS-304 Issue-ID: CPS-249 Issue-ID: CPS-276 Issue-ID: CPS-288 Issue-ID: CPS-290 Issue-ID: CPS-292 Issue-ID: CPS-300 Issue-ID: CPS-308 Signed-off-by: puthuparambil.aditya Change-Id: I732a0be8b557dd125ae61f538eb77ed96f5dc2db Signed-off-by: puthuparambil.aditya --- kubernetes/cps/templates/deployment.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'kubernetes/cps/templates') diff --git a/kubernetes/cps/templates/deployment.yaml b/kubernetes/cps/templates/deployment.yaml index 59062cc0f8..861782a0b9 100755 --- a/kubernetes/cps/templates/deployment.yaml +++ b/kubernetes/cps/templates/deployment.yaml @@ -43,6 +43,10 @@ spec: {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "password") | indent 12 }} - name: LIQUIBASE_LABELS value: {{ .Values.config.liquibaseLabels }} + - name: CPS_USERNAME + {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "app-user-creds" "key" "login") | indent 12 }} + - name: CPS_PASSWORD + {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "app-user-creds" "key" "password") | indent 12 }} volumeMounts: - mountPath: /config-input name: init-data-input @@ -70,11 +74,6 @@ spec: path: {{ .Values.readiness.path }} initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.readiness.periodSeconds }} - env: - - name: CPS_USERNAME - {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "app-user-creds" "key" "login") | indent 12 }} - - name: CPS_PASSWORD - {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "app-user-creds" "key" "password") | indent 12 }} resources: {{ include "common.resources" . | nindent 10 }} {{- if .Values.nodeSelector }} nodeSelector: {{ toYaml .Values.nodeSelector | nindent 12 }} -- cgit 1.2.3-korg