We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents de48d50 + 83210a3 commit c90e9baCopy full SHA for c90e9ba
deployer/commands/config/get_clusters.py
@@ -24,7 +24,7 @@ def get_clusters(
24
cluster_names = []
25
for config_file_path in get_all_cluster_yaml_files():
26
with open(config_file_path) as f:
27
- cluster = Cluster(yaml.load(f), config_file_path.parent)
+ cluster = Cluster(yaml.load(f), config_file_path)
28
if provider and cluster.spec["provider"] != provider:
29
continue
30
cluster_names.append(os.path.basename(config_file_path.parent))
0 commit comments