Skip to content

Commit

Permalink
uninstall: fix hardcoded test namespace
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Miguel Custódio <[email protected]>
  • Loading branch information
bmcustodio authored and tklauser committed Sep 1, 2021
1 parent a141056 commit 974527d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/uninstall.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func (k *K8sUninstaller) Uninstall(ctx context.Context) error {
return err
}

k.Log("🔥 Deleting cilium-test namespace...")
k.Log("🔥 Deleting %s namespace...", k.params.TestNamespace)
k.client.DeleteNamespace(ctx, k.params.TestNamespace, metav1.DeleteOptions{})

k.Log("🔥 Deleting Service accounts...")
Expand Down

0 comments on commit 974527d

Please sign in to comment.