File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 64
64
strategy :
65
65
matrix :
66
66
config :
67
- - {"provider": "Nutanix", "kubernetesVersion": "v1.29.6"}
67
+ - {"provider": "Nutanix", "kubernetesVersion": "v1.29.6", "osImage": "nkp-rocky-9.4-release-1.29.6-20240816215147"}
68
+ - {"provider": "Nutanix", "kubernetesVersion": "v1.30.5", "osImage": "nkp-rocky-9.4-release-1.30.5-20240930171619"}
68
69
- {"provider": "Docker", "kubernetesVersion": "v1.29.8"}
69
- - {"provider": "Docker", "kubernetesVersion": "v1.30.4 "}
70
+ - {"provider": "Docker", "kubernetesVersion": "v1.30.5 "}
70
71
- {"provider": "Docker", "kubernetesVersion": "v1.31.0"}
71
72
# Uncomment below once we have the ability to run e2e tests on other providers from GHA.
72
73
# - {"provider": "AWS", "kubernetesVersion": "v1.29.6"}
77
78
provider : ${{ matrix.config.provider }}
78
79
kubernetes-version : ${{ matrix.config.kubernetesVersion }}
79
80
runs-on : ${{ matrix.config.provider == 'Nutanix' && 'self-hosted-ncn-dind' || 'ubuntu-22.04' }}
81
+ os-image : ${{ matrix.config.provider == 'Nutanix' && matrix.config.osImage || '' }}
80
82
secrets : inherit
81
83
permissions :
82
84
contents : read
Original file line number Diff line number Diff line change 22
22
description : The version of Kubernetes to test with
23
23
type : string
24
24
required : true
25
+ os-image :
26
+ description : The OS image to use for the machine template
27
+ type : string
28
+ required : false
25
29
26
30
jobs :
27
31
e2e-test :
87
91
NUTANIX_PRISM_ELEMENT_CLUSTER_NAME : ${{ vars.NUTANIX_PRISM_ELEMENT_CLUSTER_NAME }}
88
92
NUTANIX_SUBNET_NAME : ${{ vars.NUTANIX_SUBNET_NAME }}
89
93
NUTANIX_STORAGE_CONTAINER_NAME : ${{ vars.NUTANIX_STORAGE_CONTAINER_NAME }}
94
+ NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME : ${{ inputs.os-image }}
90
95
KINDEST_IMAGE_TAG : ${{ inputs.kubernetes-version }}
91
96
E2E_KUBERNETES_VERSION : ${{ inputs.kubernetes-version }}
92
97
Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ variables:
201
201
# # Name of the Prism Element cluster.
202
202
# NUTANIX_PRISM_ELEMENT_CLUSTER_NAME: ""
203
203
# # Name of the OS image pre-uploaded in PC.
204
- NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME : nkp-rocky-9.4-release-1.29.6-20240816215147
204
+ NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME : nkp-rocky-9.4-release-1.30.5-20240930171619
205
205
# # Name of the subnet to be assigned to the VMs.
206
206
# NUTANIX_SUBNET_NAME: ""
207
207
# # Name of the storage container to CSI driver
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ func init() {
69
69
flag .StringVar (
70
70
& bootstrapKubernetesVersion ,
71
71
"e2e.bootstrap-kind-version" ,
72
- "v1.29.6 " ,
72
+ "v1.30.5 " ,
73
73
"the version of the image used in bootstrap cluster" ,
74
74
)
75
75
}
You can’t perform that action at this time.
0 commit comments