Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 7 additions & 1 deletion build/codegen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,13 @@ openapi-gen \
"${PACKAGE_NAME}/pkg/lib/numorstring" 2>&1 | tee /tmp/openapi-gen.log
grep "API rule violation" /tmp/openapi-gen.log | grep "projectcalico" > /tmp/openapi-violations.log || true
if [ -s /tmp/openapi-violations.log ]; then
grep -v -F -f "${REPO_ROOT}/hack/openapi-violations-known.list" /tmp/openapi-violations.log > /tmp/openapi-new-violations.log || true
# Strip comments and blank lines before using the known list as a pattern
# file. A blank line makes grep -F match everything, which silently disables
# the gate.
KNOWN_VIOLATIONS=$(mktemp)
grep -v -e '^#' -e '^[[:space:]]*$' "${REPO_ROOT}/hack/openapi-violations-known.list" > "${KNOWN_VIOLATIONS}" || true
grep -v -x -F -f "${KNOWN_VIOLATIONS}" /tmp/openapi-violations.log > /tmp/openapi-new-violations.log || true
rm -f "${KNOWN_VIOLATIONS}"
if [ -s /tmp/openapi-new-violations.log ]; then
echo "ERROR: openapi-gen reported new API rule violations in Calico types:"
cat /tmp/openapi-new-violations.log
Expand Down
28 changes: 24 additions & 4 deletions config/crd/projectcalico.org_bgpconfigurations.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

124 changes: 106 additions & 18 deletions config/crd/projectcalico.org_felixconfigurations.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 29 additions & 2 deletions config/crd/projectcalico.org_ippools.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config/crd/projectcalico.org_ipreservations.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading