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 916154d commit a4fd025Copy full SHA for a4fd025
build/e2e-image/e2e.sh
@@ -30,7 +30,8 @@ if [ "$K8S_MINOR" = "33" ]; then
30
echo "GKE 1.33 detected: cleaning up stuck service finalizers"
31
32
kubectl get svc -n agones-system -o json \
33
- | jq -r '.items[] | select(.metadata.finalizers != null) | .metadata.name' \
+ | jq -r '.items[] | select(.metadata.finalizers | length > 0) | .metadata.name' \
34
+ | awk 'NF' \
35
| xargs -r -I {} kubectl patch svc -n agones-system -p '{"metadata":{"finalizers":null}}' --type=merge
36
fi
37
0 commit comments