Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 1 | apiVersion: extensions/v1beta1 |
| 2 | kind: Deployment |
| 3 | metadata: |
| 4 | name: robot |
Mandeep Khinda | 0e8f889 | 2017-08-25 03:31:17 +0000 | [diff] [blame] | 5 | namespace: "{{ .Values.nsPrefix }}-robot" |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 6 | spec: |
| 7 | selector: |
| 8 | matchLabels: |
| 9 | app: robot |
| 10 | template: |
| 11 | metadata: |
| 12 | labels: |
| 13 | app: robot |
| 14 | name: robot |
| 15 | spec: |
| 16 | containers: |
kerenj | fc2caa6 | 2017-08-23 12:46:02 +0000 | [diff] [blame] | 17 | - image: {{ .Values.image.testsuite }} |
| 18 | imagePullPolicy: {{ .Values.pullPolicy }} |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 19 | name: robot |
| 20 | volumeMounts: |
yuryn | 8b3bc5a | 2017-09-13 19:21:03 +0300 | [diff] [blame] | 21 | - name: localtime |
| 22 | mountPath: /etc/localtime |
| 23 | readOnly: true |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 24 | - name: robot-eteshare |
| 25 | mountPath: /share |
Mandeep Khinda | c2384bd | 2017-08-25 16:23:01 +0000 | [diff] [blame] | 26 | - name: robot-resources-asdc-interface |
| 27 | mountPath: /var/opt/OpenECOMP_ETE/robot/resources/asdc_interface.robot |
| 28 | - name: robot-resources-policy-interface |
| 29 | mountPath: /var/opt/OpenECOMP_ETE/robot/resources/policy_interface.robot |
| 30 | - name: robot-resources-sdngc-interface |
| 31 | mountPath: /var/opt/OpenECOMP_ETE/robot/resources/sdngc_interface.robot |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 32 | - name: lighttpd-authorization |
| 33 | mountPath: /etc/lighttpd/authorization |
Mandeep Khinda | dc2dc86 | 2017-09-08 05:20:30 +0000 | [diff] [blame] | 34 | - name: robot-assets-asdc-base-clearwater-env |
| 35 | mountPath: /var/opt/OpenECOMP_ETE/robot/assets/asdc/base_clearwater/base_clearwater.env |
| 36 | - name: robot-assets-asdc-base-vfw-env |
| 37 | mountPath: /var/opt/OpenECOMP_ETE/robot/assets/asdc/base_vfw/base_vfw.env |
| 38 | - name: robot-assets-asdc-base-vlb-env |
| 39 | mountPath: /var/opt/OpenECOMP_ETE/robot/assets/asdc/base_vlb/base_vlb.env |
| 40 | - name: robot-assets-asdc-base-vlb-dns-env |
| 41 | mountPath: /var/opt/OpenECOMP_ETE/robot/assets/asdc/base_vlb/dnsscaling.env |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 42 | ports: |
| 43 | - containerPort: 88 |
| 44 | readinessProbe: |
| 45 | tcpSocket: |
| 46 | port: 88 |
| 47 | initialDelaySeconds: 5 |
| 48 | periodSeconds: 10 |
| 49 | volumes: |
yuryn | 8b3bc5a | 2017-09-13 19:21:03 +0300 | [diff] [blame] | 50 | - name: localtime |
| 51 | hostPath: |
| 52 | path: /etc/localtime |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 53 | - name: robot-eteshare |
| 54 | hostPath: |
Mandeep Khinda | 0e8f889 | 2017-08-25 03:31:17 +0000 | [diff] [blame] | 55 | path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/eteshare |
Mandeep Khinda | c2384bd | 2017-08-25 16:23:01 +0000 | [diff] [blame] | 56 | - name: robot-resources-asdc-interface |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 57 | hostPath: |
Mandeep Khinda | c2384bd | 2017-08-25 16:23:01 +0000 | [diff] [blame] | 58 | path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/resources/asdc_interface.robot |
| 59 | - name: robot-resources-policy-interface |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 60 | hostPath: |
Mandeep Khinda | c2384bd | 2017-08-25 16:23:01 +0000 | [diff] [blame] | 61 | path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/resources/policy_interface.robot |
| 62 | - name: robot-resources-sdngc-interface |
| 63 | hostPath: |
| 64 | path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/resources/sdngc_interface.robot |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 65 | - name: lighttpd-authorization |
| 66 | hostPath: |
Mandeep Khinda | 0e8f889 | 2017-08-25 03:31:17 +0000 | [diff] [blame] | 67 | path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/authorization |
Mandeep Khinda | dc2dc86 | 2017-09-08 05:20:30 +0000 | [diff] [blame] | 68 | - name: robot-assets-asdc-base-clearwater-env |
| 69 | hostPath: |
| 70 | path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/assets/asdc/base_clearwater/base_clearwater.env |
| 71 | - name: robot-assets-asdc-base-vfw-env |
| 72 | hostPath: |
| 73 | path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/assets/asdc/base_vfw/base_vfw.env |
| 74 | - name: robot-assets-asdc-base-vlb-env |
| 75 | hostPath: |
| 76 | path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/assets/asdc/base_vlb/base_vlb.env |
| 77 | - name: robot-assets-asdc-base-vlb-dns-env |
| 78 | hostPath: |
| 79 | path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/assets/asdc/base_vlb/dnsscaling.env |
Borislav Glozman | 5197e2e | 2017-07-24 10:45:28 +0300 | [diff] [blame] | 80 | imagePullSecrets: |
Mandeep Khinda | 0e8f889 | 2017-08-25 03:31:17 +0000 | [diff] [blame] | 81 | - name: "{{ .Values.nsPrefix }}-docker-registry-key" |