Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Commit

Permalink
e2e: Skip Kommander cleanup at the end
Browse files Browse the repository at this point in the history
Signed-off-by: Dimitri Koshkin <[email protected]>
  • Loading branch information
dkoshkin committed Nov 12, 2020
1 parent f685f0e commit 595c9ae
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion test/kommander_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,16 @@ kubeaddonsRepository:
t.Fatal(err)
}

addonCleanup, err := addontesters.CleanupAddons(t, cluster, addons...)
// there is well known bug of kommander not being able to be uninstalled
// https://jira.d2iq.com/browse/D2IQ-63395
// remove it from the addon cleanup list
addonsToCleanup := make([]v1beta2.AddonInterface, 0)
for _, addon := range addons {
if addon.GetName() != "kommander" {
addonsToCleanup = append(addonsToCleanup, addon)
}
}
addonCleanup, err := addontesters.CleanupAddons(t, cluster, addonsToCleanup...)
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit 595c9ae

Please sign in to comment.