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
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ type MultitenantPodNetworkConfigList struct {
}

// MultitenantPodNetworkConfigSpec defines the desired state of PodNetworkConfig
// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="spec is immutable after creation"
type MultitenantPodNetworkConfigSpec struct {
// name of PNI object from requesting cx pod
// +kubebuilder:validation:Optional
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ spec:
required:
- podNetwork
type: object
x-kubernetes-validations:
- message: spec is immutable after creation
rule: self == oldSelf
status:
description: MultitenantPodNetworkConfigStatus defines the observed state
of PodNetworkConfig
Expand Down
Loading