diff options
author | Mandeep Khinda <mandeep.khinda@amdocs.com> | 2017-08-25 16:23:01 +0000 |
---|---|---|
committer | Mandeep Khinda <mandeep.khinda@amdocs.com> | 2017-08-25 16:23:01 +0000 |
commit | aefb9af60684aae9982d1440ed5134105b718eea (patch) | |
tree | 5047f671cf880f23f56c9c7755cc1078f220cb30 /templates | |
parent | 26f54265aae6c9fc40c479aa10dada6b7e8b63dc (diff) |
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 <mandeep.khinda@amdocs.com>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/robot-deployment.yaml | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/templates/robot-deployment.yaml b/templates/robot-deployment.yaml index a1b07dc..56feb0c 100644 --- a/templates/robot-deployment.yaml +++ b/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 |