We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 315c456 commit 62fa834Copy full SHA for 62fa834
scripts/test-check-packages.sh
@@ -13,8 +13,10 @@ cleanup() {
13
kubectl describe pods --all-namespaces > build/kubectl-dump.txt
14
kubectl logs -l app=elastic-agent -n kube-system >> build/kubectl-dump.txt
15
16
- # Take down the kind cluster
17
- kind delete cluster
+ # Take down the kind cluster.
+ # Sometimes kind has troubles with deleting the cluster, but it isn't an issue with elastic-package.
18
+ # As it causes flaky issues on the CI side, let's ignore it.
19
+ kind delete cluster || true
20
fi
21
22
# Take down the stack
0 commit comments