Skip to content

Commit b7bec08

Browse files
authored
fix: Correct placementGroup variable name in API (#1256)
This was a typo from the PR which introduced `placementGroup`.
1 parent 54243cb commit b7bec08

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

api/v1alpha1/aws_node_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ type AWSGenericNodeSpec struct {
4141

4242
// PlacementGroup specifies the placement group in which to launch the instance.
4343
// +kubebuilder:validation:Optional
44-
PlacementGroup *PlacementGroup `json:"placementGroupName,omitempty"`
44+
PlacementGroup *PlacementGroup `json:"placementGroup,omitempty"`
4545
}
4646

4747
type AdditionalSecurityGroup []SecurityGroup

api/v1alpha1/crds/caren.nutanix.com_awsclusterconfigs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ spec:
390390
instanceType:
391391
default: m5.xlarge
392392
type: string
393-
placementGroupName:
393+
placementGroup:
394394
description: PlacementGroup specifies the placement group in which to launch the instance.
395395
properties:
396396
name:

api/v1alpha1/crds/caren.nutanix.com_awsworkernodeconfigs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ spec:
8989
default: m5.2xlarge
9090
description: The AWS instance type to use for the cluster Machines.
9191
type: string
92-
placementGroupName:
92+
placementGroup:
9393
description: PlacementGroup specifies the placement group in which
9494
to launch the instance.
9595
properties:

0 commit comments

Comments
 (0)