Skip to content

Commit 85603df

Browse files
wip - isolating e2e
Signed-off-by: Danil-Grigorev <[email protected]>
1 parent 7a64510 commit 85603df

13 files changed

+391
-57
lines changed

templates/cluster-template-clusterclass-rke2.yaml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

templates/flavors/clusterclass-rke2/azure-cluster-template.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,6 @@ spec:
2929
sourcePorts: "*"
3030
action: "Allow"
3131
- name: node-subnet
32+
natGateway:
33+
name: node-natgateway
3234
role: node

templates/flavors/clusterclass-rke2/azure-machine-template-controlplane.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ metadata:
55
spec:
66
template:
77
spec:
8+
image:
9+
computeGallery:
10+
gallery: replace-me
11+
name: replace-me
12+
version: replace-me
813
osDisk:
914
diskSizeGB: 128
1015
osType: Linux

templates/flavors/clusterclass-rke2/azure-machine-template-worker.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ metadata:
55
spec:
66
template:
77
spec:
8+
image:
9+
computeGallery:
10+
gallery: replace-me
11+
name: replace-me
12+
version: replace-me
813
osDisk:
914
diskSizeGB: 30
1015
osType: Linux

templates/test/ci/cluster-template-prow-clusterclass-ci-rke2.yaml

+161-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

templates/test/ci/cluster-template-prow-topology-rke2.yaml

+47
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
apiVersion: addons.cluster.x-k8s.io/v1alpha1
2+
kind: HelmChartProxy
3+
metadata:
4+
name: cloud-provider-azure-chart
5+
spec:
6+
valuesTemplate: |
7+
infra:
8+
clusterName: {{ .Cluster.metadata.name }}
9+
cloudControllerManager:
10+
clusterCIDR: {{ .Cluster.spec.clusterNetwork.pods.cidrBlocks | join "," }}
11+
logVerbosity: 4
12+
nodeSelector:
13+
node-role.kubernetes.io/control-plane: "true"

templates/test/ci/prow-clusterclass-ci-rke2/kustomization.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ resources:
66
- ../../../flavors/clusterclass-rke2/rke2-controlplane-template.yaml
77
- ../../../flavors/clusterclass-rke2/azure-cluster-template.yaml
88
- ../../../flavors/clusterclass-rke2/azure-machine-template-controlplane.yaml
9+
- ../../../flavors/clusterclass-rke2/azure-machine-template-worker.yaml
910
- rke2-config-template.yaml
1011
- ../../../azure-cluster-identity
12+
- ../../../addons/cluster-api-helm/calico.yaml
13+
- ../../../addons/cluster-api-helm/cloud-provider-azure.yaml
1114
patches:
1215
- path: patches.yaml
1316
- path: variables.yaml
17+
- path: ccm-patch.yaml
1418

1519
sortOptions:
1620
order: fifo

0 commit comments

Comments
 (0)