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 @@ -34,11 +34,14 @@ type OverlayExtensionConfigList struct {
// +kubebuilder:validation:XValidation:rule="!has(oldSelf.extensionIPRange) || has(self.extensionIPRange)", message="ExtensionIPRange is required once set"
type OverlayExtensionConfigSpec struct {
// ExtensionIPRange field defines a CIDR that should be able to reach routing domain ip addresses.
// +kubebuilder:validation:Optional
// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="Value is immutable"
// +kubebuilder:validation:MaxLength=43
// 43 is max length of IPv6 CIDR string
ExtensionIPRange string `json:"extensionIPRange,omitempty"`

// AppGatewaySubnetID field defines a subnet delegated to Application Gateway that should be able to reach routing domain ip addresses.
// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="Value is immutable"
AppGatewaySubnetID string `json:"appGatewaySubnetID,omitempty"`
}

type OECState string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ spec:
spec:
description: OverlayExtensionConfigSpec defines the desired state of OverlayExtensionConfig.
properties:
appGatewaySubnetID:
description: AppGatewaySubnetID field defines a subnet delegated to
Application Gateway that should be able to reach routing domain
ip addresses.
type: string
x-kubernetes-validations:
- message: Value is immutable
rule: self == oldSelf
extensionIPRange:
description: |-
ExtensionIPRange field defines a CIDR that should be able to reach routing domain ip addresses.
Expand Down
Loading