feat: add pod extension points to the mcp-stack gateway (command, extra containers, volumes) - #6955
Open
healdropper wants to merge 1 commit into
Open
healdropper wants to merge 1 commit into
healdropper wants to merge 1 commit into
Conversation
…ra containers, volumes) The gateway deployment cannot currently host sidecars (e.g. a cloud-sql-proxy for external Postgres), extra init containers (e.g. a secrets bootstrapper), extra volumes/mounts, or an entrypoint wrapper. Add the standard optional extension values, all default-empty: - mcpContextForge.command / args: override the container entrypoint - mcpContextForge.extraInitContainers / extraContainers - mcpContextForge.extraVolumes / extraVolumeMounts With default values the rendered output is byte-identical to the current chart. Signed-off-by: healdropper <1035382+healdropper@users.noreply.github.com>
healdropper
marked this pull request as ready for review
September 22, 2026 09:21
healdropper
requested review from
Lang-Akshay,
brian-hussey,
crivetimihai,
ja8zyjits and
msureshkumar88
as code owners
September 22, 2026 09:21
This branch has not been deployed
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.
The mcp-stack gateway deployment currently offers no way to add sidecar containers, extra init containers, extra volumes/mounts, or to wrap the container entrypoint. Running the gateway against managed infrastructure often needs exactly that — e.g. a
cloud-sql-proxysidecar for an external Postgres, or an init container that materializes secrets from a CSI mount before the gateway starts.This adds the standard optional extension values under
mcpContextForge, all default-empty:command/args: override the gateway container entrypointextraInitContainers/extraContainersextraVolumes/extraVolumeMountsBackwards compatible: with default values the rendered output is byte-identical to the current chart (
helm templatediff is empty). Verified withhelm lintand a values file exercising every new field (init container, sidecar, entrypoint wrapper, volume + mount).