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
30 changes: 30 additions & 0 deletions config/crd/embed.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Copyright (c) 2026 Tigera, Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Package crd serves the generated projectcalico.org v3 CRDs to the components
// that install them, so nothing has to keep a copy of its own.
package crd

import (
"embed"
"io/fs"
)

//go:embed *.yaml
var crds embed.FS

// FS returns the CRD YAML generated into this directory.
func FS() fs.FS {
return crds
}
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.

4 changes: 2 additions & 2 deletions config/crd/projectcalico.org_bgpfilters.yaml

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

13 changes: 13 additions & 0 deletions config/crd/projectcalico.org_bgppeers.yaml

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

2 changes: 2 additions & 0 deletions config/crd/projectcalico.org_caliconodestatuses.yaml

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

Loading