diff --git a/api/v1alpha1/nodepool_types.go b/api/v1alpha1/nodepool_types.go index 50d4d2929a3..c8005f9deaa 100644 --- a/api/v1alpha1/nodepool_types.go +++ b/api/v1alpha1/nodepool_types.go @@ -305,7 +305,7 @@ type KubevirtNodePoolPlatform struct { // AWSNodePoolPlatform specifies the configuration of a NodePool when operating // on AWS. type AWSNodePoolPlatform struct { - // InstanceType is an ec2 instance type for node instances (e.g. m4-large). + // InstanceType is an ec2 instance type for node instances (e.g. m5.large). InstanceType string `json:"instanceType"` // InstanceProfile is the AWS EC2 instance profile, which is a container for an IAM role that the EC2 instance uses. diff --git a/cmd/cluster/aws/create.go b/cmd/cluster/aws/create.go index bf465bbaeea..5c22e956ef3 100644 --- a/cmd/cluster/aws/create.go +++ b/cmd/cluster/aws/create.go @@ -28,7 +28,7 @@ func NewCreateCommand(opts *core.CreateOptions) *cobra.Command { opts.AWSPlatform = core.AWSPlatformOptions{ AWSCredentialsFile: "", Region: "us-east-1", - InstanceType: "m4.large", + InstanceType: "m5.large", RootVolumeType: "gp3", RootVolumeSize: 120, RootVolumeIOPS: 0, diff --git a/cmd/install/assets/hypershift-operator/hypershift.openshift.io_nodepools.yaml b/cmd/install/assets/hypershift-operator/hypershift.openshift.io_nodepools.yaml index 8b90fba232f..f30b161e651 100644 --- a/cmd/install/assets/hypershift-operator/hypershift.openshift.io_nodepools.yaml +++ b/cmd/install/assets/hypershift-operator/hypershift.openshift.io_nodepools.yaml @@ -216,7 +216,7 @@ spec: type: string instanceType: description: InstanceType is an ec2 instance type for node - instances (e.g. m4-large). + instances (e.g. m5.large). type: string resourceTags: description: "ResourceTags is an optional list of additional diff --git a/cmd/nodepool/create.go b/cmd/nodepool/create.go index cb2c24232a5..926afa9e03d 100644 --- a/cmd/nodepool/create.go +++ b/cmd/nodepool/create.go @@ -54,7 +54,7 @@ func NewCreateCommand() *cobra.Command { ClusterName: "example", NodeCount: 2, ReleaseImage: "", - InstanceType: "m4.large", + InstanceType: "m5.large", RootVolumeType: "gp3", RootVolumeSize: 120, RootVolumeIOPS: 0, diff --git a/docs/content/reference/api.md b/docs/content/reference/api.md index 319c1bce4a8..ffd46a8aa58 100644 --- a/docs/content/reference/api.md +++ b/docs/content/reference/api.md @@ -895,7 +895,7 @@ string
InstanceType is an ec2 instance type for node instances (e.g. m4-large).
+InstanceType is an ec2 instance type for node instances (e.g. m5.large).