feat(standalone): add controlPlane.standalone.advertiseAddress field#4019
Merged
rlmcpherson merged 1 commit intoJun 16, 2026
Conversation
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.
/kind feature
What does this pull request do?
Adds a
controlPlane.standalone.advertiseAddressconfig field that pins the IP the standalone control plane advertises to thekubernetesandkonnectivityServices.Today this is only controllable via the
VCLUSTER_STANDALONE_IP_ADDRESSenv var (set indirectly byinstall-standalone.sh --node-ip). On multi-homed hosts (cloud VMs with both a public and a private NIC),ChooseHostInterface()selects the default-route IP — typically the public address, which is not reachable from the pod network — so thekubernetes/konnectivityEndpointSlices end up with unreachable IPs. This exposes a discoverable, first-class config field so operators can pin the in-cluster-reachable address without systemd drop-ins.The vcluster-pro standalone code consumes it (prefer the config field, then the env var, then default-route detection) in a follow-up PR.
Please provide a short message that should be published in the vcluster release notes
Added
controlPlane.standalone.advertiseAddressto pin the IP the standalone control plane advertises to the kubernetes/konnectivity Services (useful on multi-homed hosts).Refs ENGCP-733