diff --git a/app/build_containers.py b/app/build_containers.py index 817dc0e3..7a660b8a 100644 --- a/app/build_containers.py +++ b/app/build_containers.py @@ -55,7 +55,7 @@ def command(ctx, include, exclude): if not os.path.isdir(dev_root_path): print('Dev root directory doesn\'t exist, creating') - with open("container-image-list.txt") as container_list_file: + with open("data/container-image-list.txt") as container_list_file: containers = container_list_file.read().splitlines() if verbose: diff --git a/app/deploy_system.py b/app/deploy_system.py index ad8614ff..56f00604 100644 --- a/app/deploy_system.py +++ b/app/deploy_system.py @@ -48,7 +48,7 @@ def command(ctx, include, exclude, cluster, command, services): if verbose: print(f"Using cluster name: {cluster}") - with open("pod-list.txt") as pod_list_file: + with open("data/pod-list.txt") as pod_list_file: pods = pod_list_file.read().splitlines() if verbose: diff --git a/app/setup_repositories.py b/app/setup_repositories.py index 5110b36d..ff8e8f84 100644 --- a/app/setup_repositories.py +++ b/app/setup_repositories.py @@ -89,7 +89,7 @@ def command(ctx, include, exclude, check_only, pull, branches_file): print('Dev root directory doesn\'t exist, creating') os.makedirs(dev_root_path) - with open("repository-list.txt") as repository_list_file: + with open("data/repository-list.txt") as repository_list_file: all_repos = repository_list_file.read().splitlines() if verbose: diff --git a/container-image-list.txt b/data/container-image-list.txt similarity index 100% rename from container-image-list.txt rename to data/container-image-list.txt diff --git a/pod-list.txt b/data/pod-list.txt similarity index 100% rename from pod-list.txt rename to data/pod-list.txt diff --git a/repository-list.txt b/data/repository-list.txt similarity index 100% rename from repository-list.txt rename to data/repository-list.txt