From edc898536f7fdc28f532dda7b69d8d120c364403 Mon Sep 17 00:00:00 2001 From: Alexis de Talhouët Date: Wed, 24 Jan 2018 15:25:08 -0500 Subject: Fix wrong host path for robot properties MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gerrit.onap.org/r/#/c/28935/ changed the path where the vm_properties.py file is located. It also changed the persisted folder removing the support of persisting logs. This patch is reverting this. Change-Id: Id3ecfa5752e7e27ddfd00742277843ac3021aec8 Issue-ID: OOM-575 Signed-off-by: Alexis de Talhouët --- kubernetes/robot/templates/robot-deployment.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kubernetes/robot') diff --git a/kubernetes/robot/templates/robot-deployment.yaml b/kubernetes/robot/templates/robot-deployment.yaml index 154abb48ed..c3b50b78d6 100644 --- a/kubernetes/robot/templates/robot-deployment.yaml +++ b/kubernetes/robot/templates/robot-deployment.yaml @@ -33,8 +33,8 @@ spec: readOnly: true - name: robot-resources-asdc-interface mountPath: /var/opt/OpenECOMP_ETE/robot/resources/asdc_interface.robot - - name: vm-properties - mountPath: /share/config/ + - name: robot-eteshare + mountPath: /share - name: lighttpd-authorization mountPath: /etc/lighttpd/authorization ports: @@ -51,9 +51,9 @@ spec: - name: robot-resources-asdc-interface hostPath: path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/robot/resources/asdc_interface.robot - - name: vm-properties + - name: robot-eteshare hostPath: - path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/config + path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/eteshare - name: lighttpd-authorization hostPath: path: /dockerdata-nfs/{{ .Values.nsPrefix }}/robot/authorization -- cgit 1.2.3-korg