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 625899b commit 779e526Copy full SHA for 779e526
.github/workflows/image-build-on-manual.yaml
@@ -41,6 +41,7 @@ jobs:
41
echo "nodes=$nodes" >> $GITHUB_OUTPUT
42
43
image-build:
44
+ needs: get-build-matrix
45
strategy:
46
matrix:
47
node: ${{ fromJSON(needs.get-build-matrix.outputs.nodes) }}
.github/workflows/scripts/e2e/gmc_install.sh
@@ -64,7 +64,7 @@ function cleanup_gmc() {
64
if kubectl get namespace $SYSTEM_NAMESPACE > /dev/null 2>&1; then
65
echo "Deleting namespace: $SYSTEM_NAMESPACE"
66
kubectl delete namespace "$SYSTEM_NAMESPACE"
67
- kubectl delete crd gmconnectors.gmc.opea.io
+ kubectl delete crd gmconnectors.gmc.opea.io || true
68
else
69
echo "Namespace $SYSTEM_NAMESPACE does not exist"
70
fi
0 commit comments