From 6885c0e8ce7e5461de2c67d92a80e421e5f5372f Mon Sep 17 00:00:00 2001 From: Milan Verespej Date: Thu, 17 Jan 2019 12:54:19 +0100 Subject: 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 --- ansible/group_vars/infrastructure.yml | 1 - ansible/group_vars/kubernetes.yml | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 ansible/group_vars/kubernetes.yml 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 -- cgit 1.2.3-korg