Skip to content

Commit

Permalink
Fix cluster names (#528)
Browse files Browse the repository at this point in the history
fix cluster names
  • Loading branch information
alexmasi authored Apr 11, 2024
1 parent a48ea9f commit 217cf98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deploy/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ func (e *ExternalSpec) Healthy() error {
}

func (e *ExternalSpec) GetName() string {
return "external"
return "kne"
}

func (e *ExternalSpec) GetDockerNetworkResourceName() string {
Expand Down Expand Up @@ -523,7 +523,7 @@ func (k *KubeadmSpec) Healthy() error {
}

func (k *KubeadmSpec) GetName() string {
return "kubeadm"
return "kne"
}

func (k *KubeadmSpec) GetDockerNetworkResourceName() string {
Expand Down Expand Up @@ -705,7 +705,7 @@ func (k *KindSpec) GetName() string {
if k.Name != "" {
return k.Name
}
return "kind"
return "kne"
}

func (k *KindSpec) GetDockerNetworkResourceName() string {
Expand Down

0 comments on commit 217cf98

Please sign in to comment.