Enhance Envoy Gateway multi-gateway config mode#1651
Merged
Conversation
Signed-off-by: Jorge Perez <jorge.perez@rackspace.com>
japerezjr
marked this pull request as draft
July 2, 2026 19:10
japerezjr
marked this pull request as ready for review
July 7, 2026 20:01
rackerchris
marked this pull request as draft
July 8, 2026 16:21
japerezjr
marked this pull request as ready for review
July 9, 2026 18:15
Contributor
Author
|
Added an HTTPRoute cutover cleanup helper in Usage before cutover: sudo /opt/genestack/bin/cleanup-envoy-httproutes.sh snapshot \
--output /etc/genestack/envoy-httproutes-before-cutover.jsonAfter cutover, preview cleanup: sudo /opt/genestack/bin/cleanup-envoy-httproutes.sh cleanup \
--snapshot /etc/genestack/envoy-httproutes-before-cutover.jsonExecute cleanup: sudo /opt/genestack/bin/cleanup-envoy-httproutes.sh cleanup \
--snapshot /etc/genestack/envoy-httproutes-before-cutover.json \
--executeThe cleanup is naming-agnostic: it deletes only pre-cutover HTTPRoutes from the snapshot that still have the same UID and still reference the legacy Gateway, defaulting to |
Contributor
Author
|
Moved the HTTPRoute cutover cleanup helper from Updated path: sudo /opt/genestack/scripts/cleanup-envoy-httproutes.sh snapshot \
--output /etc/genestack/envoy-httproutes-before-cutover.json
sudo /opt/genestack/scripts/cleanup-envoy-httproutes.sh cleanup \
--snapshot /etc/genestack/envoy-httproutes-before-cutover.json
sudo /opt/genestack/scripts/cleanup-envoy-httproutes.sh cleanup \
--snapshot /etc/genestack/envoy-httproutes-before-cutover.json \
--execute |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR enhances the Envoy Gateway deployment path so operators can opt into a config-driven internal/external Gateway API layout while preserving the existing default behavior when no new flags or config file are provided.
What changed
bin/install-envoy-gateway.shandbin/setup-envoy-gateway.sh.external-egandinternal-eg.HYPERCONVERGED_ENVOY_GATEWAY_ACME=true/--envoy-gateway-acmefor lab testing with external per-service HTTPS listeners and Let us Encrypt issuer config.examples/envoy-multi-gateway-config.yaml..beads/,AGENTS.md, and.gitattributesdo not enter future commits.Backward compatibility
The existing no-config path is preserved. Running the Envoy setup/install scripts without the new config options keeps the legacy
flex-gatewaydeployment behavior.Hyperconverged lab usage
Default config-mode lab:
ACME-oriented lab mode with per-service external listeners:
Validation
bash -n bin/setup-envoy-gateway.shbash -n bin/install-envoy-gateway.shbash -n scripts/lib/hyperconverged-common.shshellcheck bin/setup-envoy-gateway.sh bin/install-envoy-gateway.shexternal-eginternal-egissuer: letsencrypt-prodissuer: flex-gateway-issuerkeystone-httpsandnova-httpsNotes
Wildcard certificates still require DNS01 if Let us Encrypt wildcard issuance is needed. The ACME config added here is intended for HTTP01 and per-service hostnames/listeners.