From: Milan Verespej Date: Thu, 17 Jan 2019 11:54:19 +0000 (+0100) Subject: Fix variable nfs_mount_path not found X-Git-Tag: 6.0.0-ONAP~340^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=6885c0e8ce7e5461de2c67d92a80e421e5f5372f;p=oom%2Foffline-installer.git Fix variable nfs_mount_path not found Variable for creating nfs mount for onap nodes was in wrong group_vars file which caused the error because variable was undefined for hosts that needed it. This change moves this variable to correct file. Change-Id: If177fb23d90b8a32d70dd774dde2dfbfc697980a Issue-ID: OOM-1588 Signed-off-by: Milan Verespej --- diff --git a/ansible/group_vars/infrastructure.yml b/ansible/group_vars/infrastructure.yml index ab314055..cd682e2a 100755 --- a/ansible/group_vars/infrastructure.yml +++ b/ansible/group_vars/infrastructure.yml @@ -1,5 +1,4 @@ --- -nfs_mount_path: /dockerdata-nfs vnc_passwd: samsung simulated_hosts: git: diff --git a/ansible/group_vars/kubernetes.yml b/ansible/group_vars/kubernetes.yml new file mode 100644 index 00000000..869c35f3 --- /dev/null +++ b/ansible/group_vars/kubernetes.yml @@ -0,0 +1,2 @@ +--- +nfs_mount_path: /dockerdata-nfs