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>
diff --git a/templates/modelloader-deployment.yaml b/templates/modelloader-deployment.yaml
index 96c9ee1..f7d855b 100644
--- a/templates/modelloader-deployment.yaml
+++ b/templates/modelloader-deployment.yaml
@@ -2,7 +2,7 @@
 kind: Deployment
 metadata:
   name: model-loader-service
-  namespace: {{ .Values.NS }}
+  namespace: "{{ .Values.nsPrefix }}-aai"
 spec:
   selector:
     matchLabels:
@@ -56,7 +56,7 @@
               "env": [
                   {
                       "name": "NAMESPACE",
-                      "value": "onap-sdc"
+                      "value": "{{ .Values.nsPrefix }}-sdc"
                   }
               ],
               "image": "{{ .Values.image.readiness }}",
@@ -68,7 +68,7 @@
       containers:
       - env:
         - name: DISTR_CLIENT_ASDC_ADDRESS
-          value: sdc-be.onap-sdc:8443
+          value: sdc-be.{{ .Values.nsPrefix }}-sdc:8443
         - name: DISTR_CLIENT_ENVIRONMENT_NAME
           value: AUTO
         - name: DISTR_CLIENT_USER
@@ -76,7 +76,7 @@
         - name: DISTR_CLIENT_PASSWORD
           value: OBF:1ks51l8d1o3i1pcc1r2r1e211r391kls1pyj1z7u1njf1lx51go21hnj1y0k1mli1sop1k8o1j651vu91mxw1vun1mze1vv11j8x1k5i1sp11mjc1y161hlr1gm41m111nkj1z781pw31kku1r4p1e391r571pbm1o741l4x1ksp
         - name: APP_SERVER_BASE_URL
-          value: https://aai-service.onap-aai:8443
+          value: https://aai-service.{{ .Values.nsPrefix }}-aai:8443
         - name: APP_SERVER_KEYSTORE_PASSWORD
           value: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
         - name: APP_SERVER_AUTH_USER
@@ -96,4 +96,4 @@
           periodSeconds: 10
       restartPolicy: Always
       imagePullSecrets:
-      - name: onap-docker-registry-key
+      - name: "{{ .Values.nsPrefix }}-docker-registry-key"