From d6ea987caed84a9f36030a5a1516df7c6186362d Mon Sep 17 00:00:00 2001 From: Mandeep Khinda Date: Sat, 24 Jun 2017 11:49:37 -0400 Subject: onap on kubernetes source files Change-Id: I4de34baf90979651223a28323010deb7aef21946 Signed-off-by: Mandeep Khinda --- kubernetes/robot/robot-deployment.yaml | 51 ++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 kubernetes/robot/robot-deployment.yaml (limited to 'kubernetes/robot/robot-deployment.yaml') diff --git a/kubernetes/robot/robot-deployment.yaml b/kubernetes/robot/robot-deployment.yaml new file mode 100644 index 0000000000..a29e611e5a --- /dev/null +++ b/kubernetes/robot/robot-deployment.yaml @@ -0,0 +1,51 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: robot +spec: + selector: + matchLabels: + app: robot + template: + metadata: + labels: + app: robot + name: robot + spec: + containers: + - image: nexus3.onap.org:10001/openecomp/testsuite:1.0-STAGING-latest + 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/onapdemo/robot/eteshare + - name: robot-assets + hostPath: + path: /dockerdata-nfs/onapdemo/robot/robot/assets + - name: robot-resources + hostPath: + path: /dockerdata-nfs/onapdemo/robot/robot/resources + - name: robot-testsuites + hostPath: + path: /dockerdata-nfs/onapdemo/robot/robot/testsuites + - name: lighttpd-authorization + hostPath: + path: /dockerdata-nfs/onapdemo/robot/authorization -- cgit 1.2.3-korg