From fc2caa6c458c77e10e738a8e9af058d222ac9405 Mon Sep 17 00:00:00 2001 From: kerenj Date: Wed, 23 Aug 2017 12:46:02 +0000 Subject: robot K8S-Helm Parameterization changed robot k8s deployment to support helm parameterization. updated image to 1.1 Issue-ID: OOM-52 Change-Id: Ibd7cd5a73589abb42940897a5a524cb44f53dd98 Signed-off-by: kerenj --- kubernetes/robot/templates/robot-deployment.yaml | 55 ++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 kubernetes/robot/templates/robot-deployment.yaml (limited to 'kubernetes/robot/templates/robot-deployment.yaml') diff --git a/kubernetes/robot/templates/robot-deployment.yaml b/kubernetes/robot/templates/robot-deployment.yaml new file mode 100644 index 0000000000..c4bc9544d8 --- /dev/null +++ b/kubernetes/robot/templates/robot-deployment.yaml @@ -0,0 +1,55 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: robot + namespace: {{ .Values.NS }} +spec: + selector: + matchLabels: + app: robot + template: + metadata: + labels: + app: robot + name: robot + spec: + containers: + - image: {{ .Values.image.testsuite }} + imagePullPolicy: {{ .Values.pullPolicy }} + name: robot + volumeMounts: + - name: robot-eteshare + mountPath: /share + - name: robot-assets + mountPath: /var/opt/OpenECOMP_ETE/robot/assets + - name: robot-resources + mountPath: /var/opt/OpenECOMP_ETE/robot/resources + - name: robot-testsuites + mountPath: /var/opt/OpenECOMP_ETE/robot/testsuites + - name: lighttpd-authorization + mountPath: /etc/lighttpd/authorization + ports: + - containerPort: 88 + readinessProbe: + tcpSocket: + port: 88 + initialDelaySeconds: 5 + periodSeconds: 10 + volumes: + - name: robot-eteshare + hostPath: + path: /dockerdata-nfs/onap/robot/eteshare + - name: robot-assets + hostPath: + path: /dockerdata-nfs/onap/robot/robot/assets + - name: robot-resources + hostPath: + path: /dockerdata-nfs/onap/robot/robot/resources + - name: robot-testsuites + hostPath: + path: /dockerdata-nfs/onap/robot/robot/testsuites + - name: lighttpd-authorization + hostPath: + path: /dockerdata-nfs/onap/robot/authorization + imagePullSecrets: + - name: onap-docker-registry-key -- cgit 1.2.3-korg