From c2384bd53677fc0dd10a4a192b7c4d2fbce99af7 Mon Sep 17 00:00:00 2001 From: Mandeep Khinda Date: Fri, 25 Aug 2017 16:23:01 +0000 Subject: fixing robot 1.1 k8s container we forked too many files that we never needed too. - fix is to only fork those that we have changed to make the commands work in our envs. Issue-ID:OOM-169 Change-Id: I353e0c624a86169cf5243ea36839ce6754bf013b Signed-off-by: Mandeep Khinda --- kubernetes/robot/templates/robot-deployment.yaml | 29 ++++++++++++++---------- 1 file changed, 17 insertions(+), 12 deletions(-) (limited to 'kubernetes/robot') diff --git a/kubernetes/robot/templates/robot-deployment.yaml b/kubernetes/robot/templates/robot-deployment.yaml index a1b07dc410..56feb0c1be 100644 --- a/kubernetes/robot/templates/robot-deployment.yaml +++ b/kubernetes/robot/templates/robot-deployment.yaml @@ -20,12 +20,14 @@ spec: 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: robot-resources-openstack-keystone-int + mountPath: /var/opt/OpenECOMP_ETE/robot/resources/openstack/keystone_interface.robot + - name: robot-resources-asdc-interface + mountPath: /var/opt/OpenECOMP_ETE/robot/resources/asdc_interface.robot + - name: robot-resources-policy-interface + mountPath: /var/opt/OpenECOMP_ETE/robot/resources/policy_interface.robot + - name: robot-resources-sdngc-interface + mountPath: /var/opt/OpenECOMP_ETE/robot/resources/sdngc_interface.robot - name: lighttpd-authorization mountPath: /etc/lighttpd/authorization ports: @@ -39,15 +41,18 @@ spec: - name: robot-eteshare hostPath: path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/eteshare - - name: robot-assets + - name: robot-resources-openstack-keystone-int hostPath: - path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/assets - - name: robot-resources + path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/resources/openstack/keystone_interface.robot + - name: robot-resources-asdc-interface hostPath: - path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/resources - - name: robot-testsuites + path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/resources/asdc_interface.robot + - name: robot-resources-policy-interface hostPath: - path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/testsuites + path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/resources/policy_interface.robot + - name: robot-resources-sdngc-interface + hostPath: + path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/resources/sdngc_interface.robot - name: lighttpd-authorization hostPath: path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/authorization -- cgit 1.2.3-korg