Skip to content

Commit

Permalink
Fix coredns pdb preventing cluster deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiang-zhang committed Jan 22, 2024
1 parent 37cc928 commit 0c5a9ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ var _ = Describe("(Integration) [Backwards compatibility test]", func() {
By("deleting the initial nodegroup")
cmd = params.EksctlDeleteCmd.WithArgs(
"nodegroup",
"--disable-eviction",
"--verbose", "4",
"--cluster", params.ClusterName,
initialNgName,
Expand Down
1 change: 1 addition & 0 deletions integration/tests/cluster_dns/cluster_dns_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ var _ = AfterSuite(func() {
}
cmd := params.EksctlDeleteCmd.WithArgs(
"cluster", params.ClusterName,
"--disable-nodegroup-eviction",
"--verbose", "2",
)
Expect(cmd).To(RunSuccessfully())
Expand Down
1 change: 1 addition & 0 deletions integration/tests/existing_vpc/existing_vpc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ func deleteStack(stackName string, ctl api.ClusterProvider) {
var _ = AfterSuite(func() {
cmd := params.EksctlDeleteClusterCmd.
WithArgs(
"--disable-nodegroup-eviction",
"--config-file", "-",
"--wait",
).
Expand Down

0 comments on commit 0c5a9ec

Please sign in to comment.