Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions tests/e2e/ambient/ambient_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,15 @@ spec:
}
}

By("Cleaning up the Istio resource")
Expect(k.Delete("istio", istioName)).To(Succeed(), "Istio CR failed to be deleted")

By("Cleaning up the IstioCNI resource")
Expect(k.Delete("istiocni", istioCniName)).To(Succeed(), "IstioCNI CR failed to be deleted")

By("Cleaning up the ZTunnel resource")
Expect(k.Delete("ztunnel", "default")).To(Succeed(), "ZTunnel CR failed to be deleted")

By("Cleaning up the Istio namespace")
Expect(k.DeleteNamespace(controlPlaneNamespace)).To(Succeed(), "Istio Namespace failed to be deleted")

Expand Down