fix(helm): use native gRPC probe on relay :4222 and bump default to v1.19.5#2500
Merged
nddq merged 1 commit intoJul 23, 2026
Merged
Conversation
nddq
requested changes
Jul 14, 2026
slariviere
force-pushed
the
fix/hubble-relay-native-grpc-probe-comments
branch
from
July 23, 2026 16:04
cacacfa to
1c9ffff
Compare
nddq
enabled auto-merge
July 23, 2026 20:53
Member
|
@slariviere All commits need to have verified signatures |
…n image registries
auto-merge was automatically disabled
July 23, 2026 21:05
Head branch was pushed to by a user without write access
slariviere
force-pushed
the
fix/hubble-relay-native-grpc-probe-comments
branch
from
July 23, 2026 21:05
1a3cd95 to
0289ff9
Compare
Contributor
Author
|
@nddq should be good now |
nddq
approved these changes
Jul 23, 2026
nddq
enabled auto-merge
July 23, 2026 21:16
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.
Closes #2165
Address review comments from #2282 (closed due to inactivity)
Summary
Fixes hubble-relay's startup/readiness/liveness probes, which fail on Cilium
v1.16+ images because the
grpc_health_probebinary used by the legacyexec-based probe was removed upstream (cilium/cilium#37806).
templates/hubble-relay/deployment.yaml— single nativegrpc:probeagainst the relay's dedicated health server (
hubble.relay.grpcHealthPort,default
4222), replacing the k8s-version-gated exec/native branching.The health listener is always plaintext regardless of
hubble.tls.enabled(only the main API on
listenPortis TLS-wrapped), so this probe works inboth TLS and non-TLS deployments. Also renders the relay image via the
cilium.imagehelper (previously a rawrepository:tagstring) souseDigest/overrideare actually honored.templates/hubble-relay/configmap.yaml— wireshubble.relay.grpcHealthPortthrough to
health-listen-address, so the relay's health server actuallylistens on the port the probes target.
templates/hubble-ui/deployment.yaml— frontend and backend images nowalso render via the
cilium.imagehelper.values.yaml:hubble.relay.imagedefault bumped frommcr.microsoft.com/oss/cilium/hubble-relay:v1.15.0toquay.io/cilium/hubble-relay:v1.19.5(matches the Ciliumv1.19.3dependency in
go.mod), withuseDigest: true.hubble.relay.grpcHealthPort: "4222".hubble.ui.backend.imageandhubble.ui.frontend.imageboth moved frommcr.microsoft.comtoquay.io/cilium/hubble-ui{,-backend}:v0.13.5(previously split across two registries at
v0.12.2), matching upstreamCilium's
v1.19.5chart image pins.