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 65b73f0 commit cfe3392Copy full SHA for cfe3392
1 file changed
.github/workflows/lint.yml
@@ -67,7 +67,8 @@ jobs:
67
echo "skip CRD-bound: $f"; continue;;
68
esac
69
echo "::group::kubectl dry-run $f"
70
- if ! kubectl apply --dry-run=client -f "$f"; then fail=1; fi
+ # --validate=false: there's no cluster, so skip OpenAPI download
71
+ if ! kubectl apply --dry-run=client --validate=false -f "$f"; then fail=1; fi
72
echo "::endgroup::"
73
done < <(find . -type f -path '*/manifests/*.yaml')
74
exit "$fail"
0 commit comments