File tree Expand file tree Collapse file tree 7 files changed +559
-7
lines changed
infrastructure-aws/kustomize_sources Expand file tree Collapse file tree 7 files changed +559
-7
lines changed Original file line number Diff line number Diff line change @@ -226,6 +226,8 @@ providers:
226
226
- sourcePath : " ./infrastructure-aws/generated/cluster-template-upgrades.yaml"
227
227
- sourcePath : " ./infrastructure-aws/generated/cluster-template-external-infrastructure.yaml"
228
228
- sourcePath : " ./infrastructure-aws/generated/cluster-template-external-securitygroups.yaml"
229
+ - sourcePath : " ./infrastructure-aws/generated/cluster-template-peered-remote.yaml"
230
+ - sourcePath : " ./infrastructure-aws/generated/cluster-template-internal-elb.yaml"
229
231
- sourcePath : " ./infrastructure-aws/kustomize_sources/topology/clusterclass-quick-start.yaml"
230
232
- sourcePath : " ./shared/v1beta1_provider/metadata.yaml"
231
233
replacements :
Original file line number Diff line number Diff line change
1
+ resources :
2
+ - ../remote-management-cluster
3
+ patchesStrategicMerge :
4
+ - patches/internal-elb.yaml
5
+
Original file line number Diff line number Diff line change
1
+ apiVersion : infrastructure.cluster.x-k8s.io/v1beta1
2
+ kind : AWSCluster
3
+ metadata :
4
+ name : " ${CLUSTER_NAME}"
5
+ spec :
6
+ controlPlaneLoadBalancer :
7
+ scheme : internal
8
+ network :
9
+ vpc :
10
+ id : " ${WL_VPC_ID}"
11
+ subnets :
12
+ - id : " ${WL_PUBLIC_SUBNET_ID}"
13
+ - id : " ${WL_PRIVATE_SUBNET_ID}"
14
+
Original file line number Diff line number Diff line change
1
+ resources :
2
+ - ../remote-management-cluster
3
+ patchesStrategicMerge :
4
+ - patches/management.yaml
5
+
Original file line number Diff line number Diff line change
1
+ apiVersion : infrastructure.cluster.x-k8s.io/v1beta1
2
+ kind : AWSCluster
3
+ metadata :
4
+ name : " ${CLUSTER_NAME}"
5
+ spec :
6
+ network :
7
+ vpc :
8
+ id : " ${MGMT_VPC_ID}"
9
+ subnets :
10
+ - id : " ${MGMT_PUBLIC_SUBNET_ID}"
11
+ - id : " ${MGMT_PRIVATE_SUBNET_ID}"
12
+
You can’t perform that action at this time.
0 commit comments