Skip to content

Commit 23554a8

Browse files
committed
Add CEL validation for IPPools.
Make CIDR and block size immutable.
1 parent 555f91b commit 23554a8

File tree

11 files changed

+82
-0
lines changed

11 files changed

+82
-0
lines changed

api/pkg/apis/projectcalico/v3/ippool.go

+2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ type IPPool struct {
4848
// IPPoolSpec contains the specification for an IPPool resource.
4949
type IPPoolSpec struct {
5050
// The pool CIDR.
51+
// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="CIDR cannot be changed; follow IP pool migration guide to avoid corruption."
5152
CIDR string `json:"cidr" validate:"net"`
5253

5354
// Contains configuration for VXLAN tunneling for this pool. If not specified,
@@ -69,6 +70,7 @@ type IPPoolSpec struct {
6970
DisableBGPExport bool `json:"disableBGPExport,omitempty" validate:"omitempty"`
7071

7172
// The block size to use for IP address assignments from this pool. Defaults to 26 for IPv4 and 122 for IPv6.
73+
// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="Block size cannot be changed; follow IP pool migration guide to avoid corruption."
7274
BlockSize int `json:"blockSize,omitempty"`
7375

7476
// Allows IPPool to allocate for a specific node by label selector.

libcalico-go/config/crd/crd.projectcalico.org_ippools.yaml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

manifests/calico-bpf.yaml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

manifests/calico-policy-only.yaml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

manifests/calico-typha.yaml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

manifests/calico-vxlan.yaml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

manifests/calico.yaml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

manifests/canal.yaml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

manifests/crds.yaml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

manifests/flannel-migration/calico.yaml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

manifests/operator-crds.yaml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)