Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Commit cdf1979

Browse files
committed
fix: set 'PLACEHOLDER' as default for instance type
1 parent 05b8c1a commit cdf1979

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

charts/cluster-api-runtime-extensions-nutanix/defaultclusterclasses/aws-cluster-class.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ spec:
106106
template:
107107
spec:
108108
iamInstanceProfile: control-plane.cluster-api-provider-aws.sigs.k8s.io
109-
instanceType: m5.xlarge
109+
instanceType: PLACEHOLDER
110110
sshKeyName: ""
111111
---
112112
apiVersion: infrastructure.cluster.x-k8s.io/v1beta2
@@ -119,7 +119,7 @@ spec:
119119
template:
120120
spec:
121121
iamInstanceProfile: nodes.cluster-api-provider-aws.sigs.k8s.io
122-
instanceType: m5.2xlarge
122+
instanceType: PLACEHOLDER
123123
sshKeyName: ""
124124
---
125125
apiVersion: bootstrap.cluster.x-k8s.io/v1beta1

hack/examples/overlays/clusterclasses/aws/kustomization.yaml.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ patches:
5151
patch: |-
5252
- op: "add"
5353
path: "/spec/template/spec/instanceType"
54-
value: "m5.2xlarge"
54+
value: "PLACEHOLDER"
5555
- target:
5656
kind: AWSMachineTemplate
5757
name: quick-start-control-plane
5858
patch: |-
5959
- op: "add"
6060
path: "/spec/template/spec/instanceType"
61-
value: "m5.xlarge"
61+
value: "PLACEHOLDER"

0 commit comments

Comments
 (0)