robot K8S-Helm Parameterization 21/8421/3
authorkerenj <keren.joseph@amdocs.com>
Wed, 23 Aug 2017 12:46:02 +0000 (12:46 +0000)
committerkerenj <keren.joseph@amdocs.com>
Thu, 24 Aug 2017 10:10:15 +0000 (10:10 +0000)
changed robot k8s deployment to support helm parameterization. updated image to 1.1
Issue-ID: OOM-52
Change-Id: Ibd7cd5a73589abb42940897a5a524cb44f53dd98
Signed-off-by: kerenj <keren.joseph@amdocs.com>
kubernetes/oneclick/setenv.bash
kubernetes/robot/Chart.yaml [new file with mode: 0644]
kubernetes/robot/templates/all-services.yaml [new file with mode: 0644]
kubernetes/robot/templates/robot-deployment.yaml [moved from kubernetes/robot/robot-deployment.yaml with 74% similarity]
kubernetes/robot/values.yaml [new file with mode: 0644]

index 384005b..9b4de9d 100644 (file)
@@ -1,7 +1,7 @@
 #!/bin/bash
 
-HELM_APPS=('mso' 'message-router' 'sdnc' 'vid')
-ONAP_APPS=('sdc' 'aai' 'robot' 'portal' 'policy' 'appc')
+HELM_APPS=('mso' 'message-router' 'sdnc' 'vid' 'robot')
+ONAP_APPS=('sdc' 'aai' 'portal' 'policy' 'appc')
 ONAP_DOCKER_REGISTRY_KEY=${ONAP_DOCKER_REGISTRY_KEY:-onap-docker-registry-key}
 ONAP_DOCKER_REGISTRY=${ONAP_DOCKER_REGISTRY:-nexus3.onap.org:10001}
 ONAP_DOCKER_USER=${ONAP_DOCKER_USER:-docker}
diff --git a/kubernetes/robot/Chart.yaml b/kubernetes/robot/Chart.yaml
new file mode 100644 (file)
index 0000000..1f59785
--- /dev/null
@@ -0,0 +1,4 @@
+apiVersion: v1
+description: A Helm chart for Kubernetes
+name: robot
+version: 0.1.0
diff --git a/kubernetes/robot/templates/all-services.yaml b/kubernetes/robot/templates/all-services.yaml
new file mode 100644 (file)
index 0000000..2b80a29
--- /dev/null
@@ -0,0 +1,14 @@
+apiVersion: v1
+kind: Service
+metadata:
+  labels:
+    app: robot
+  name: robot
+  namespace: {{ .Values.NS }}
+spec:
+  ports:
+  - port: 88
+    nodePort: 30209
+  selector:
+    app: robot
+  type: NodePort
similarity index 74%
rename from kubernetes/robot/robot-deployment.yaml
rename to kubernetes/robot/templates/robot-deployment.yaml
index ade7147..c4bc954 100644 (file)
@@ -2,6 +2,7 @@ apiVersion: extensions/v1beta1
 kind: Deployment
 metadata:
   name: robot
+  namespace: {{ .Values.NS }}
 spec:
   selector:
     matchLabels:
@@ -13,7 +14,8 @@ spec:
        name: robot
     spec:
       containers:
-      - image: nexus3.onap.org:10001/openecomp/testsuite:1.0-STAGING-latest
+      - image: {{ .Values.image.testsuite }}
+        imagePullPolicy: {{ .Values.pullPolicy }}
         name: robot
         volumeMounts:
         - name: robot-eteshare
@@ -36,18 +38,18 @@ spec:
       volumes:
         - name: robot-eteshare
           hostPath:
-            path: /dockerdata-nfs/onapdemo/robot/eteshare
+            path: /dockerdata-nfs/onap/robot/eteshare
         - name: robot-assets
           hostPath:
-            path: /dockerdata-nfs/onapdemo/robot/robot/assets
+            path: /dockerdata-nfs/onap/robot/robot/assets
         - name: robot-resources
           hostPath:
-            path: /dockerdata-nfs/onapdemo/robot/robot/resources
+            path: /dockerdata-nfs/onap/robot/robot/resources
         - name: robot-testsuites
           hostPath:
-            path: /dockerdata-nfs/onapdemo/robot/robot/testsuites
+            path: /dockerdata-nfs/onap/robot/robot/testsuites
         - name: lighttpd-authorization
           hostPath:
-            path: /dockerdata-nfs/onapdemo/robot/authorization
+            path: /dockerdata-nfs/onap/robot/authorization
       imagePullSecrets:
       - name: onap-docker-registry-key
diff --git a/kubernetes/robot/values.yaml b/kubernetes/robot/values.yaml
new file mode 100644 (file)
index 0000000..f906599
--- /dev/null
@@ -0,0 +1,5 @@
+NS: onap-robot
+pullPolicy: Always
+image:
+  testsuite: nexus3.onap.org:10001/openecomp/testsuite:1.1-STAGING-latest
+