Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:
securityContext:
{{- toYaml . | nindent 12 }}
{{- end }}
image: "{{ .Values.hubble.relay.image.repository }}:{{ .Values.hubble.relay.image.tag }}"
image: {{ include "cilium.image" .Values.hubble.relay.image | quote }}
imagePullPolicy: {{ .Values.hubble.relay.image.pullPolicy }}
command:
- hubble-relay
Expand Down
4 changes: 2 additions & 2 deletions deploy/hubble/manifests/controller/helm/retina/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -425,8 +425,8 @@ hubble:
image:
override: ~
repository: "mcr.microsoft.com/oss/cilium/hubble-relay"
tag: "v1.15.0"
digest: "sha256:19cd56e7618832257bf88b2f281287cb57f9f7fcb9e04775a6198d4bc4daffae"
tag: "1.16.1"
digest: "sha256:641b13bbe9038d7b0bedd6480e3d704174432e1fd05a25728a4eb27ec47df89a"
useDigest: false
pullPolicy: "Always"
Comment on lines 425 to 431
Copy link

Copilot AI Apr 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The hubble-relay image digest, useDigest, and override fields in values are currently ineffective: the hubble-relay Deployment template renders the image as {{ .Values.hubble.relay.image.repository }}:{{ .Values.hubble.relay.image.tag }} and never uses these keys. As a result, updating the digest here won’t actually pin the hubble-relay image. Consider updating the hubble-relay template to use the existing cilium.image helper (or otherwise conditionally append @<digest> when useDigest is true and honor override).

Copilot uses AI. Check for mistakes.

Expand Down