From b59604c4cb441f2eec43816a38cc867283c2c89b Mon Sep 17 00:00:00 2001 From: Matt Hook Date: Thu, 9 Mar 2023 05:10:50 +1300 Subject: [PATCH] fix cluster type tag on json causing it not to be populated (#139) --- kubernetes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubernetes.go b/kubernetes.go index e9e6750..a99e930 100644 --- a/kubernetes.go +++ b/kubernetes.go @@ -166,7 +166,7 @@ type KubernetesVersion struct { Version string `json:"version"` Type string `json:"type"` Default bool `json:"default,omitempty"` - ClusterType string `json:"cluster_type,omitempty"` + ClusterType string `json:"clusterType,omitempty"` } // ListKubernetesClusters returns all cluster of kubernetes in the account