diff options
author | jmac <james.macnider@amdocs.com> | 2018-03-28 20:36:47 +0000 |
---|---|---|
committer | jmac <james.macnider@amdocs.com> | 2018-04-02 18:35:26 +0000 |
commit | 4f76af43bb89cca60dbc4974df560958b6b49798 (patch) | |
tree | 3ae20024feb7230cbef9c05c9ec73acb24947428 /kubernetes/common/dgbuilder/templates | |
parent | ced8514d3c19dc5ba4ae8e42797fc731ef25d200 (diff) |
Fixed missing/wrong references in DG Builder chart
Change-Id: I90eb42468f84120693d5842ea0cd13b1b3c20ecb
Signed-off-by: jmac <james.macnider@amdocs.com>
Issue-ID: OOM-748
Diffstat (limited to 'kubernetes/common/dgbuilder/templates')
-rw-r--r-- | kubernetes/common/dgbuilder/templates/deployment.yaml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/kubernetes/common/dgbuilder/templates/deployment.yaml b/kubernetes/common/dgbuilder/templates/deployment.yaml index 4e1f1019ee..a1e95682ee 100644 --- a/kubernetes/common/dgbuilder/templates/deployment.yaml +++ b/kubernetes/common/dgbuilder/templates/deployment.yaml @@ -21,7 +21,7 @@ spec: - /root/ready.py args: - --container-name - - {{ .Values.dbPodName }} + - {{ .Values.config.dbPodName }} env: - name: NAMESPACE valueFrom: @@ -35,10 +35,8 @@ spec: - name: {{ include "common.name" . }} image: "{{ .Values.global.repository | default .Values.repository }}/{{ .Values.image }}" imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} - command: - - /bin/bash - - -c - - cd /opt/onap/sdnc/dgbuilder/ && ./start.sh sdnc1.0 && wait + command: ["/bin/bash"] + args: ["-c", "cd /opt/onap/ccsdk/dgbuilder/ && ./start.sh sdnc1.0 && wait"] ports: - containerPort: {{ .Values.service.internalPort }} readinessProbe: |