We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dadc8c commit 34347edCopy full SHA for 34347ed
1 file changed
internal/types/cluster_type.go
@@ -53,19 +53,19 @@ func (ct ClusterType) IsOpenShift() bool {
53
func (ct ClusterType) String() string {
54
switch ct {
55
case ClusterTypeInfraGKE:
56
- return "GKE"
+ return "GKE (infra)"
57
case ClusterTypeInfraOpenShift4:
58
return "OpenShift4 (infra)"
59
case ClusterTypeOpenShift4:
60
return "OpenShift4"
61
case ClusterTypeKind:
62
return "Kind"
63
case ClusterTypeMinikube:
64
- return "minikube"
+ return "Minikube"
65
case ClusterTypeK3s:
66
- return "k3s"
+ return "K3s"
67
case ClusterTypeCRC:
68
- return "crc"
+ return "CRC"
69
default:
70
return "Unknown"
71
}
0 commit comments