onap on kubernetes source files

Change-Id: I4de34baf90979651223a28323010deb7aef21946
Signed-off-by: Mandeep Khinda <Mandeep.Khinda@amdocs.com>
diff --git a/kubernetes/appc/all-services.yaml b/kubernetes/appc/all-services.yaml
new file mode 100644
index 0000000..8ce32ac
--- /dev/null
+++ b/kubernetes/appc/all-services.yaml
@@ -0,0 +1,74 @@
+apiVersion: v1
+kind: Service
+metadata:
+  name: dbhost
+  labels:
+    app: appc-dbhost
+spec:
+  ports:
+  - name: "appc-dbhost-port"
+    port: 3306
+  selector:
+    app: appc-dbhost
+  clusterIP: None
+---
+apiVersion: v1
+kind: Service
+metadata:
+  name: sdnctldb01
+  labels:
+    app: appc-dbhost
+spec:
+  ports:
+    - port: 3306
+  selector:
+    app: appc-dbhost
+  clusterIP: None
+---
+apiVersion: v1
+kind: Service
+metadata:
+  name: sdnctldb02
+  labels:
+    app: appc-dbhost
+spec:
+  ports:
+    - port: 3306
+  selector:
+    app: appc-dbhost
+  clusterIP: None
+---
+apiVersion: v1
+kind: Service
+metadata:
+  name: sdnhost
+  labels:
+    app: appc
+spec:
+  ports:
+  - name: "appc-port-8282"
+    port: 8282
+    targetPort: 8181
+    nodePort: 30230
+  - name: "appc-port-1830"
+    port: 1830
+    nodePort: 30231
+  type: NodePort
+  selector:
+    app: appc
+---
+apiVersion: v1
+kind: Service
+metadata:
+  name: dgbuilder
+  labels:
+    app: appc-dgbuilder
+spec:
+  ports:
+  - name: "appc-dgbuilder-port"
+    port: 3000
+    targetPort: 3100
+    nodePort: 30228
+  type: NodePort
+  selector:
+    app: appc-dgbuilder
diff --git a/kubernetes/appc/appc-deployment.yaml b/kubernetes/appc/appc-deployment.yaml
new file mode 100644
index 0000000..b0224d5
--- /dev/null
+++ b/kubernetes/appc/appc-deployment.yaml
@@ -0,0 +1,74 @@
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+  name: appc
+spec:
+  selector:
+    matchLabels:
+      app: appc
+  template:
+    metadata:
+      labels:
+        app: appc
+      name: appc
+      annotations:
+        pod.beta.kubernetes.io/init-containers: '[
+          {
+              "args": [
+                  "--container-name",
+                  "appc-db-container"
+              ],
+              "command": [
+                  "/root/ready.py"
+              ],
+              "env": [
+                  {
+                      "name": "NAMESPACE",
+                      "valueFrom": {
+                          "fieldRef": {
+                              "apiVersion": "v1",
+                              "fieldPath": "metadata.namespace"
+                          }
+                      }
+                  }
+              ],
+              "image": "oomk8s/readiness-check:1.0.0",
+              "imagePullPolicy": "Always",
+              "name": "appc-readiness"
+          }
+          ]'
+    spec:
+      containers:
+      - command:
+        - /opt/openecomp/appc/bin/startODL.sh
+        env:
+        - name: MYSQL_ROOT_PASSWORD
+          value: openECOMP1.0
+        - name: SDNC_CONFIG_DIR
+          value: /opt/openecomp/sdnc/data/properties
+        - name: APPC_CONFIG_DIR
+          value: /opt/openecomp/appc/data/properties
+        - name: DMAAP_TOPIC_ENV
+          value: SUCCESS
+        image: nexus3.onap.org:10001/openecomp/appc-image:1.0-STAGING-latest
+        name: appc-controller-container
+        volumeMounts:
+        - mountPath: /opt/openecomp/appc/data/properties
+          name: appc-conf
+        - mountPath: /opt/openecomp/sdnc/data/properties
+          name: sdnc-conf
+        ports:
+        - containerPort: 8181
+        - containerPort: 1830
+        readinessProbe:
+          tcpSocket:
+            port: 8181
+          initialDelaySeconds: 5
+          periodSeconds: 10
+      volumes:
+        - name: appc-conf
+          hostPath:
+            path: /dockerdata-nfs/onapdemo/appc/conf
+        - name: sdnc-conf
+          hostPath:
+            path: /dockerdata-nfs/onapdemo/sdnc/conf
diff --git a/kubernetes/appc/db-deployment.yaml b/kubernetes/appc/db-deployment.yaml
new file mode 100644
index 0000000..0af66cc
--- /dev/null
+++ b/kubernetes/appc/db-deployment.yaml
@@ -0,0 +1,36 @@
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+  name: appc-dbhost
+spec:
+  selector:
+    matchLabels:
+      app: appc-dbhost
+  template:
+    metadata:
+      labels:
+        app: appc-dbhost
+    spec:
+      containers:
+      - env:
+        - name: MYSQL_ROOT_PASSWORD
+          value: openECOMP1.0
+        - name: MYSQL_ROOT_HOST
+          value: '%'
+        image: mysql/mysql-server:5.6
+        name: appc-db-container
+        volumeMounts:
+        - mountPath: /var/lib/mysql
+          name: appc-data
+        ports:
+        - containerPort: 3306
+        readinessProbe:
+          tcpSocket:
+            port: 3306
+          initialDelaySeconds: 5
+          periodSeconds: 10
+      restartPolicy: Always
+      volumes:
+      - name: appc-data
+        hostPath:
+          path: /dockerdata-nfs/onapdemo/appc/data
diff --git a/kubernetes/appc/dgbuilder-deployment.yaml b/kubernetes/appc/dgbuilder-deployment.yaml
new file mode 100644
index 0000000..9122095
--- /dev/null
+++ b/kubernetes/appc/dgbuilder-deployment.yaml
@@ -0,0 +1,64 @@
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+  name: appc-dgbuilder
+spec:
+  selector:
+    matchLabels:
+      app: appc-dgbuilder
+  template:
+    metadata:
+      labels:
+        app: appc-dgbuilder
+      name: appc-dgbuilder
+      annotations:
+        pod.beta.kubernetes.io/init-containers: '[
+          {
+              "args": [
+                  "--container-name",
+                  "appc-db-container",
+                  "--container-name",
+                  "appc-controller-container"
+              ],
+              "command": [
+                  "/root/ready.py"
+              ],
+              "env": [
+                  {
+                      "name": "NAMESPACE",
+                      "valueFrom": {
+                          "fieldRef": {
+                              "apiVersion": "v1",
+                              "fieldPath": "metadata.namespace"
+                          }
+                      }
+                  }
+              ],
+              "image": "oomk8s/readiness-check:1.0.0",
+              "imagePullPolicy": "Always",
+              "name": "appc-dgbuilder-readiness"
+          }
+          ]'
+    spec:
+      containers:
+      - command:
+        - /bin/bash
+        - -c
+        - cd /opt/openecomp/sdnc/dgbuilder/ && ./start sdnc1.0 && wait
+        env:
+        - name: MYSQL_ROOT_PASSWORD
+          value: openECOMP1.0
+        - name: SDNC_CONFIG_DIR
+          value: /opt/openecomp/sdnc/data/properties
+        - name: APPC_CONFIG_DIR
+          value: /opt/openecomp/appc/data/properties
+        image: nexus3.onap.org:10001/openecomp/dgbuilder-sdnc-image:1.0-STAGING-latest
+        name: appc-dgbuilder-container
+        ports:
+        - containerPort: 3100
+        readinessProbe:
+          tcpSocket:
+            port: 3100
+          initialDelaySeconds: 5
+          periodSeconds: 10
+      restartPolicy: Always