Skip to content

Commit

Permalink
Fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
apica-ionos committed Jun 27, 2020
1 parent 6d09441 commit 4325f03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions k8s.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,16 +79,16 @@ type UpdatedKubernetesCluster struct {

type KubernetesClusterEntities struct {
// NodePools of a cluster
{NodePools *KubernetesNodePools `json:"nodepools,omitempty"`
NodePools *KubernetesNodePools `json:"nodepools,omitempty"`
}

type AutoScaling struct {
// The minimum number of nodes this node pool can be scaled down to
// Required: true
MinNodeCount uint32 `json:"minNodeCount,omitempty"`,
MinNodeCount uint32 `json:"minNodeCount,omitempty"`
// The maximum number of nodes this node pool can be scaled up to
// Required: true
MaxNodeCount uint32 `json:"maxNodeCount,omitempty"`,
MaxNodeCount uint32 `json:"maxNodeCount,omitempty"`
}

type MaintenanceWindow struct {
Expand Down

0 comments on commit 4325f03

Please sign in to comment.