diff --git a/vs_starter/config.py b/vs_starter/config.py index 4da6196865a1d9dc930c0a42b111bbfdbc47e483..74e8e93633fa8abeb89ca1f4457b69a7e4e71dd5 100644 --- a/vs_starter/config.py +++ b/vs_starter/config.py @@ -55,7 +55,9 @@ def get_helm_data(helm_config_path: str, file_type: str, index: bool = False) -> files.append(template_file) if index: - return files[0] + for i, f in enumerate(files): + if "registrar" in f: + return files[i] return files