diff options
author | Mandeep Khinda <mandeep.khinda@amdocs.com> | 2017-08-25 16:18:28 +0000 |
---|---|---|
committer | Mandeep Khinda <mandeep.khinda@amdocs.com> | 2017-08-25 16:18:28 +0000 |
commit | 9f354818ca418f86d42bf549613e46b66ebdc323 (patch) | |
tree | 47690daeed693bb5e7f87f86a64d5b39807a4e75 /kubernetes/appc/templates/appc-deployment.yaml | |
parent | fb541cc7f4cd6e3f1fc9f1a526b59c832fbce3f4 (diff) |
moving appc & sdnc to 1.1
-Updated forked config files.
--Had to change from mounting whole dir to specific files
as we were overwriting other files from the image!
Issue-ID:OOM-66
Issue-ID:OOM-160
Change-Id: Id6d5394e279fcbdbbaffc8f48067e73a7c99c1c9
Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
Diffstat (limited to 'kubernetes/appc/templates/appc-deployment.yaml')
-rw-r--r-- | kubernetes/appc/templates/appc-deployment.yaml | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/kubernetes/appc/templates/appc-deployment.yaml b/kubernetes/appc/templates/appc-deployment.yaml index 049ac5d457..8be421cbf9 100644 --- a/kubernetes/appc/templates/appc-deployment.yaml +++ b/kubernetes/appc/templates/appc-deployment.yaml @@ -55,10 +55,14 @@ spec: imagePullPolicy: {{ .Values.pullPolicy }} name: appc-controller-container volumeMounts: - - mountPath: /opt/openecomp/appc/data/properties - name: appc-conf - - mountPath: /opt/openecomp/sdnc/data/properties - name: sdnc-conf + - mountPath: /opt/openecomp/appc/data/properties/appc.properties + name: appc-properties + - mountPath: /opt/openecomp/appc/data/properties/aaiclient.properties + name: appc-aaiclient-properties + - mountPath: /opt/openecomp/sdnc/data/properties/aaiclient.properties + name: sdnc-aaiclient-properties + - mountPath: /opt/openecomp/sdnc/data/properties/admportal.json + name: sdnc-admportal-json ports: - containerPort: 8181 - containerPort: 1830 @@ -68,11 +72,17 @@ spec: initialDelaySeconds: 5 periodSeconds: 10 volumes: - - name: appc-conf + - name: appc-properties hostPath: - path: /dockerdata-nfs/{{ .Values.nsPrefix }}/appc/conf - - name: sdnc-conf + path: /dockerdata-nfs/{{ .Values.nsPrefix }}/appc/conf/appc.properties + - name: appc-aaiclient-properties hostPath: - path: /dockerdata-nfs/{{ .Values.nsPrefix }}/sdnc/conf + path: /dockerdata-nfs/{{ .Values.nsPrefix }}/appc/conf/aaiclient.properties + - name: sdnc-aaiclient-properties + hostPath: + path: /dockerdata-nfs/{{ .Values.nsPrefix }}/sdnc/conf/aaiclient.properties + - name: sdnc-admportal-json + hostPath: + path: /dockerdata-nfs/{{ .Values.nsPrefix }}/sdnc/conf/admportal.json imagePullSecrets: - name: "{{ .Values.nsPrefix }}-docker-registry-key" |