policy K8S-Helm Parameterization

changed policy k8s deployment to support helm parameterization. updated images to 1.1
Issue-ID: OOM-52
Change-Id: I4eb0626c7c00ace2c266d6ddbb1313f3b654d69e
Signed-off-by: kerenj <keren.joseph@amdocs.com>
diff --git a/kubernetes/policy/templates/dep-brmsgw.yaml b/kubernetes/policy/templates/dep-brmsgw.yaml
new file mode 100644
index 0000000..3f59d21
--- /dev/null
+++ b/kubernetes/policy/templates/dep-brmsgw.yaml
@@ -0,0 +1,67 @@
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+  name: brmsgw
+  namespace: {{ .Values.NS }}
+spec:
+  replicas: 1
+  selector:
+    matchLabels:
+      app: brmsgw
+  template:
+    metadata:
+      labels:
+        app: brmsgw
+      name: brmsgw
+      annotations:
+        pod.beta.kubernetes.io/init-containers: '[
+          {
+              "args": [
+                  "--container-name",
+                  "mariadb",
+                  "--container-name",
+                  "nexus",
+                  "--container-name",
+                  "pap",
+                  "--container-name",
+                  "pdp",
+                  "--container-name",
+                  "pypdp"
+              ],
+              "command": [
+                  "/root/ready.py"
+              ],
+              "env": [
+                  {
+                      "name": "NAMESPACE",
+                      "valueFrom": {
+                          "fieldRef": {
+                              "apiVersion": "v1",
+                              "fieldPath": "metadata.namespace"
+                          }
+                      }
+                  }
+              ],
+              "image": "{{ .Values.image.readiness }}",
+              "imagePullPolicy": "{{ .Values.pullPolicy }}",
+              "name": "brmsgw-readiness"
+          }
+          ]'
+    spec:
+      containers:
+      - command:
+        - /bin/bash
+        - ./do-start.sh
+        - brmsgw
+        image: {{ .Values.image.policyPe }}
+        imagePullPolicy: {{ .Values.pullPolicy }}
+        name: brmsgw
+        volumeMounts:
+        - mountPath: /tmp/policy-install/config
+          name: pe
+      volumes:
+        - name: pe
+          hostPath:
+            path: /dockerdata-nfs/onap/policy/opt/policy/config/pe/
+      imagePullSecrets:
+      - name: onap-docker-registry-key