-
Notifications
You must be signed in to change notification settings - Fork 260
feat: add AppGatewaySubnetID field to OverlayExtensionConfig CRD #3889
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds support for Application Gateway subnet connectivity to the OverlayExtensionConfig CRD by introducing a new AppGatewaySubnetID field. The change extends routing domain connectivity to AGIC/AGC subnets while maintaining backward compatibility with the existing extensionIPRange field.
- Adds
appGatewaySubnetIDfield to OverlayExtensionConfigSpec struct - Implements immutable validation constraint on the new field
- Updates CRD manifest to include the new field definition
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| crd/overlayextensionconfig/api/v1alpha1/overlayextensionconfig_types.go | Adds AppGatewaySubnetID field to OverlayExtensionConfigSpec with validation annotations |
| crd/overlayextensionconfig/manifests/acn.azure.com_overlayextensionconfigs.yaml | Updates CRD manifest with appGatewaySubnetID field schema and validation rules |
crd/overlayextensionconfig/api/v1alpha1/overlayextensionconfig_types.go
Outdated
Show resolved
Hide resolved
|
/azp run Azure Container Networking PR |
|
Azure Pipelines successfully started running 1 pipeline(s). |
|
/azp run |
|
Azure Pipelines successfully started running 3 pipeline(s). |
|
This pull request is stale because it has been open for 2 weeks with no activity. Remove stale label or comment or this will be closed in 7 days |
|
Pull request closed due to inactivity. |
Pull request was closed
Reason for Change:
OverlayExtensionConfig (OEC) was designed specifically to work with AGIC/AGC subnets. We want to extend Routing Domain connectivity to these subnets only. To avoid breaking changes (such as removing existing
extensionIPRangefield from OEC CRD), add a newappGatewaySubnetIDfield to OEC CRD.Issue Fixed:
Requirements:
Notes: