summaryrefslogtreecommitdiffstats
path: root/templates/aai-deployment.yaml
diff options
context:
space:
mode:
authorMandeep Khinda <mandeep.khinda@amdocs.com>2017-08-25 03:31:17 +0000
committerMandeep Khinda <mandeep.khinda@amdocs.com>2017-08-25 03:41:20 +0000
commita71542fe94a0800b0a3a2e3fe212637f499a57f5 (patch)
tree2aed469f9203c6ae02f770ae3549f977ade9fe47 /templates/aai-deployment.yaml
parentcd9c1d8dfa8060f029cf642c577f9420fe924235 (diff)
refactor helm files to use namespace prefix
-removed the full namespace from each template. better lets us reuse variables. -made secret end up in a configurable namespace -fixed some bugs where secrets were missing -updated createAll and delete to make use of namespace prefix removing the need for seds to replace the word onap. *** all containers at this point come up in my env. except for aai model loader which is failing cause its still at 1.0 and its trying to talk to a 1.1 sdc and it doesnt auth properly. *** Issue-ID:OOM-215 Change-Id: I15815a01469786a391e272fde4bdaa53ff48091c Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
Diffstat (limited to 'templates/aai-deployment.yaml')
-rw-r--r--templates/aai-deployment.yaml12
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/aai-deployment.yaml b/templates/aai-deployment.yaml
index 286a9ac..162fb99 100644
--- a/templates/aai-deployment.yaml
+++ b/templates/aai-deployment.yaml
@@ -2,7 +2,7 @@ apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: aai-service
- namespace: {{ .Values.NS }}
+ namespace: "{{ .Values.nsPrefix }}-aai"
spec:
selector:
matchLabels:
@@ -76,16 +76,16 @@ spec:
volumes:
- name: aai-service-certs
hostPath:
- path: /dockerdata-nfs/onap/aai/etc/ssl/certs/
+ path: /dockerdata-nfs/{{ .Values.nsPrefix }}/aai/etc/ssl/certs/
- name: aai-service-logroot
hostPath:
- path: /dockerdata-nfs/onap/aai/opt/aai/logroot/
+ path: /dockerdata-nfs/{{ .Values.nsPrefix }}/aai/opt/aai/logroot/
- name: aai-config
hostPath:
- path: /dockerdata-nfs/onap/aai/aai-config/
+ path: /dockerdata-nfs/{{ .Values.nsPrefix }}/aai/aai-config/
- name: aai-data
hostPath:
- path: /dockerdata-nfs/onap/aai/aai-data/
+ path: /dockerdata-nfs/{{ .Values.nsPrefix }}/aai/aai-data/
restartPolicy: Always
imagePullSecrets:
- - name: onap-docker-registry-key
+ - name: "{{ .Values.nsPrefix }}-docker-registry-key"