diff --git a/src/render-ansible-requirements.py b/src/render-ansible-requirements.py index 1a5b14d..5583a1e 100644 --- a/src/render-ansible-requirements.py +++ b/src/render-ansible-requirements.py @@ -9,7 +9,7 @@ MANAGER_VERSION = os.environ.get("MANAGER_VERSION", None) if not MANAGER_VERSION: try: - with open("environments/manager/configuration.yml") as fp: + with open("configuration.yml") as fp: data = yaml.load(fp, Loader=yaml.FullLoader) MANAGER_VERSION = data["manager_version"] diff --git a/src/render-images.py b/src/render-images.py index 4ca7048..5147f92 100644 --- a/src/render-images.py +++ b/src/render-images.py @@ -9,7 +9,7 @@ MANAGER_VERSION = os.environ.get("MANAGER_VERSION", None) if not MANAGER_VERSION: try: - with open("environments/manager/configuration.yml") as fp: + with open("configuration.yml") as fp: data = yaml.load(fp, Loader=yaml.FullLoader) MANAGER_VERSION = data["manager_version"]