Skip to content

Commit

Permalink
Kubelet config e2e tests for vsphere Bottlerocket (#8387)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitalipaygude authored Jun 25, 2024
1 parent 4307b61 commit 9b966ca
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions test/e2e/vsphere_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5995,7 +5995,7 @@ func TestVSphereKubernetes129to130UbuntuEtcdScaleDown(t *testing.T) {
}

// Kubelet Configuration e2e tests
func TestVSphereKubernetes129KubeletConfigurationSimpleFlow(t *testing.T) {
func TestVSphereKubernetes129UbuntuKubeletConfiguration(t *testing.T) {
test := framework.NewClusterE2ETest(
t,
framework.NewVSphere(t, framework.WithUbuntu129()),
Expand All @@ -6005,7 +6005,7 @@ func TestVSphereKubernetes129KubeletConfigurationSimpleFlow(t *testing.T) {
runKubeletConfigurationFlow(test)
}

func TestVSphereKubernetes130KubeletConfigurationSimpleFlow(t *testing.T) {
func TestVSphereKubernetes130UbuntuKubeletConfiguration(t *testing.T) {
test := framework.NewClusterE2ETest(
t,
framework.NewVSphere(t, framework.WithUbuntu130()),
Expand All @@ -6014,3 +6014,23 @@ func TestVSphereKubernetes130KubeletConfigurationSimpleFlow(t *testing.T) {
)
runKubeletConfigurationFlow(test)
}

func TestVSphereKubernetes129BottlerocketKubeletConfiguration(t *testing.T) {
test := framework.NewClusterE2ETest(
t,
framework.NewVSphere(t, framework.WithBottleRocket129()),
framework.WithClusterFiller(api.WithKubernetesVersion(v1alpha1.Kube129)),
framework.WithKubeletConfig(),
)
runKubeletConfigurationFlow(test)
}

func TestVSphereKubernetes130BottlerocketKubeletConfiguration(t *testing.T) {
test := framework.NewClusterE2ETest(
t,
framework.NewVSphere(t, framework.WithBottleRocket130()),
framework.WithClusterFiller(api.WithKubernetesVersion(v1alpha1.Kube130)),
framework.WithKubeletConfig(),
)
runKubeletConfigurationFlow(test)
}

0 comments on commit 9b966ca

Please sign in to comment.