We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa3d1c8 commit 7c63f90Copy full SHA for 7c63f90
kubernetes.go
@@ -110,9 +110,11 @@ type KubernetesCluster struct {
110
111
// RequiredPools returns the required pools for a given Kubernetes cluster
112
type RequiredPools struct {
113
- ID string `json:"id"`
114
- Size string `json:"size"`
115
- Count int `json:"count"`
+ ID string `json:"id"`
+ Size string `json:"size"`
+ Count int `json:"count"`
116
+ Labels map[string]string `json:"labels,omitempty"`
117
+ Taints []corev1.Taint `json:"taints,omitempty"`
118
}
119
120
// PaginatedKubernetesClusters is a Kubernetes k3s cluster
0 commit comments