Skip to content

Commit 0c5a9ec

Browse files
committed
Fix coredns pdb preventing cluster deletion
1 parent 37cc928 commit 0c5a9ec

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

integration/tests/backwards_compat/backwards_compatibility_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ var _ = Describe("(Integration) [Backwards compatibility test]", func() {
129129
By("deleting the initial nodegroup")
130130
cmd = params.EksctlDeleteCmd.WithArgs(
131131
"nodegroup",
132+
"--disable-eviction",
132133
"--verbose", "4",
133134
"--cluster", params.ClusterName,
134135
initialNgName,

integration/tests/cluster_dns/cluster_dns_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ var _ = AfterSuite(func() {
9292
}
9393
cmd := params.EksctlDeleteCmd.WithArgs(
9494
"cluster", params.ClusterName,
95+
"--disable-nodegroup-eviction",
9596
"--verbose", "2",
9697
)
9798
Expect(cmd).To(RunSuccessfully())

integration/tests/existing_vpc/existing_vpc_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ func deleteStack(stackName string, ctl api.ClusterProvider) {
218218
var _ = AfterSuite(func() {
219219
cmd := params.EksctlDeleteClusterCmd.
220220
WithArgs(
221+
"--disable-nodegroup-eviction",
221222
"--config-file", "-",
222223
"--wait",
223224
).

0 commit comments

Comments
 (0)