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.
1 parent f0b0641 commit 339f092Copy full SHA for 339f092
Tests/kaas/plugin/plugin_kind.py
@@ -25,7 +25,7 @@ def create_cluster(self, kubeconfig_path):
25
cluster_yaml = self.config.get('cluster')
26
if cluster_yaml and not os.path.isabs(cluster_yaml):
27
cluster_yaml = os.path.normpath(os.path.join(self.basepath, cluster_yaml))
28
- cluster = KindCluster(name=cluster_name, image=cluster_image, kubeconfig=Path(kubeconfig_path))
+ cluster = KindCluster(name=cluster_name, image=cluster_image, kubeconfig=Path(kubeconfig_path))
29
cluster.create(cluster_yaml)
30
31
def delete_cluster(self):
0 commit comments