-
Notifications
You must be signed in to change notification settings - Fork 8
feat: Migrate from ingress-nginx to Kubernetes Gateway API #1486
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
base: main
Are you sure you want to change the base?
Conversation
703b2c6 to
cd454e1
Compare
cardoe
left a comment
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.
Looks good. Just one question.
components/envoy-gateway/values.yaml
Outdated
| enableEnvoyPatchPolicy: true | ||
| logging: | ||
| level: | ||
| default: debug |
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.
Do we want to ship the default as debug?
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.
This has been changed in later commit (5d5b911)
We no longer do "static" install of the cert-manager, because custom configuration needs to be provided to enable the Gateway API functionality.
Includes cert-manager integration.
For HTTPRoute, if the name is not explicitly set, default to first part of the hostname/FQDN.
Technically, this gives user a way to configure which routes is the listener going to accept.
Some of the services require passthrough TLS instead of termination.
This adds ability to direct traffic over https without doing cert verification.
So that we can disable TLS validation...
These have been replaced by HTTPRoutes
Summary
This PR migrates UnderStack from the legacy Ingress API with ingress-nginx controller to the Kubernetes Gateway API with Envoy Gateway. This migration is necessary due to the ingress-nginx project retirement with a March 2026 deadline.
Motivation
Changes
Infrastructure Components
Envoy Gateway Deployment (
components/envoy-gateway/)apps/infra/envoy-gateway.yamlenvoy-configs Helm Chart (
components/envoy-configs/)cert-manager Updates
enableGatewayApi: trueOpenStack Helm Charts
Updated all OpenStack service components to disable Ingress generation:
network.use_external_ingress_controller: truemanifests.ingress_api: falsemanifests.service_ingress_api: falseApplication Updates
ArgoCD, Argo Workflows, Dex
external-dns
Architecture
The new architecture uses:
envoy-gatewaynamespaceenvoy-configs.yamlDocumentation
Migration Path for Deployments
Existing deployments need to update their
deploy/<site>/repository:skip: truefor ingress-nginx inapps.yamlmanifests/envoy-gateway/helm-configs/envoy-configs.yamlwith Gateway and route definitionsSee
docs/operator-guide/gateway-api.mdfor detailed instructions.Breaking Changes
Deployments must update their site-specific configuration to:
helm-configs/envoy-configs.yamlRelated Links