From f467c033e71594133bf44307b19fd9fb0d22ac7d Mon Sep 17 00:00:00 2001 From: "cao.yuan" Date: Wed, 24 Jul 2019 17:38:39 +0800 Subject: [PATCH] Fix the GLOBAL file path Change-Id: I623dca313b5fe1b6dfc53cfab096fac3c95adcf0 --- kolla_cli/common/properties.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kolla_cli/common/properties.py b/kolla_cli/common/properties.py index 90cf3c6..50e6664 100644 --- a/kolla_cli/common/properties.py +++ b/kolla_cli/common/properties.py @@ -114,7 +114,7 @@ class AnsibleProperties(object): override_flags.ovr_global = True orig_value = self.unique_global_props[key].value ansible_prop = AnsibleProperty(key, value, - 'group_vars/__GLOBAL', + 'group_vars/__GLOBAL__', overrides, orig_value) ansible_prop.override_flags = override_flags self.global_props.append(ansible_prop)