Skip to content

Commit d1ac113

Browse files
committed
Update Helm release cilium to v1.16.8
Signed-off-by: Renovate Bot <[email protected]>
1 parent 6c2f1e6 commit d1ac113

File tree

31 files changed

+109
-67
lines changed

31 files changed

+109
-67
lines changed

class/defaults.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ parameters:
125125
charts:
126126
cilium:
127127
source: https://helm.cilium.io
128-
version: "1.16.4"
128+
version: "1.16.8"
129129
cilium-enterprise:
130130
source: "<CILIUM-ENTERPRISE-CHART-REPO-URL>" # Configure the Chart repository URL in your global defaults
131131
version: "1.16.4"

tests/golden/bgp-control-plane/cilium/cilium/01_cilium_helmchart/cilium/templates/cilium-agent/daemonset.yaml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ spec:
5454
resourceFieldRef:
5555
divisor: '1'
5656
resource: limits.memory
57-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
57+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
5858
imagePullPolicy: IfNotPresent
5959
lifecycle:
6060
postStart:
@@ -178,6 +178,9 @@ spec:
178178
name: bpf-maps
179179
- mountPath: /var/run/cilium
180180
name: cilium-run
181+
- mountPath: /var/run/cilium/netns
182+
mountPropagation: HostToContainer
183+
name: cilium-netns
181184
- mountPath: /host/etc/cni/net.d
182185
name: etc-cni-netd
183186
- mountPath: /var/lib/cilium/clustermesh
@@ -206,7 +209,7 @@ spec:
206209
fieldRef:
207210
apiVersion: v1
208211
fieldPath: metadata.namespace
209-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
212+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
210213
imagePullPolicy: IfNotPresent
211214
name: config
212215
terminationMessagePolicy: FallbackToLogsOnError
@@ -225,7 +228,7 @@ spec:
225228
value: /run/cilium/cgroupv2
226229
- name: BIN_PATH
227230
value: /var/lib/cni/bin
228-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
231+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
229232
imagePullPolicy: IfNotPresent
230233
name: mount-cgroup
231234
securityContext:
@@ -255,7 +258,7 @@ spec:
255258
env:
256259
- name: BIN_PATH
257260
value: /var/lib/cni/bin
258-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
261+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
259262
imagePullPolicy: IfNotPresent
260263
name: apply-sysctl-overwrites
261264
securityContext:
@@ -281,7 +284,7 @@ spec:
281284
- /bin/bash
282285
- -c
283286
- --
284-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
287+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
285288
imagePullPolicy: IfNotPresent
286289
name: mount-bpf-fs
287290
securityContext:
@@ -312,7 +315,7 @@ spec:
312315
key: write-cni-conf-when-ready
313316
name: cilium-config
314317
optional: true
315-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
318+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
316319
imagePullPolicy: IfNotPresent
317320
name: clean-cilium-state
318321
securityContext:
@@ -338,7 +341,7 @@ spec:
338341
name: cilium-run
339342
- command:
340343
- /install-plugin.sh
341-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
344+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
342345
imagePullPolicy: IfNotPresent
343346
name: install-cni-binaries
344347
resources:
@@ -371,6 +374,10 @@ spec:
371374
path: /var/run/cilium
372375
type: DirectoryOrCreate
373376
name: cilium-run
377+
- hostPath:
378+
path: /var/run/netns
379+
type: DirectoryOrCreate
380+
name: cilium-netns
374381
- hostPath:
375382
path: /sys/fs/bpf
376383
type: DirectoryOrCreate

tests/golden/bgp-control-plane/cilium/cilium/01_cilium_helmchart/cilium/templates/cilium-configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ data:
1111
bpf-lb-external-clusterip: 'false'
1212
bpf-lb-map-max: '65536'
1313
bpf-lb-sock: 'false'
14-
bpf-lb-sock-terminate-pod-connections: 'false'
1514
bpf-map-dynamic-size-ratio: '0.0025'
1615
bpf-policy-map-max: '16384'
1716
bpf-root: /sys/fs/bpf
@@ -66,6 +65,7 @@ data:
6665
enable-vtep: 'false'
6766
enable-well-known-identities: 'false'
6867
enable-xt-socket-fallback: 'true'
68+
envoy-access-log-buffer-size: '4096'
6969
envoy-base-id: '0'
7070
envoy-keep-cap-netbindservice: 'false'
7171
external-envoy-proxy: 'false'

tests/golden/bgp-control-plane/cilium/cilium/01_cilium_helmchart/cilium/templates/cilium-operator/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ spec:
5959
key: debug
6060
name: cilium-config
6161
optional: true
62-
image: quay.io/cilium/operator-generic:v1.16.4@sha256:c55a7cbe19fe0b6b28903a085334edb586a3201add9db56d2122c8485f7a51c5
62+
image: quay.io/cilium/operator-generic:v1.16.8@sha256:86c879ed25396a992fb8bf0297289f0b61f30f9a4a260f483abbdb39d919644d
6363
imagePullPolicy: IfNotPresent
6464
livenessProbe:
6565
httpGet:

tests/golden/bgp-control-plane/cilium/cilium/01_cilium_helmchart/cilium/templates/hubble-relay/configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
data:
3-
config.yaml: "cluster-name: default\npeer-service: \"hubble-peer.cilium.svc.cluster.local:80\"\
3+
config.yaml: "cluster-name: default\npeer-service: \"hubble-peer.cilium.svc.cluster.local.:80\"\
44
\nlisten-address: :4245\ngops: true\ngops-port: \"9893\"\ndial-timeout: \nretry-timeout:\
55
\ \nsort-buffer-len-max: \nsort-buffer-drain-timeout: \ndisable-client-tls: true\n\
66
\ndisable-server-tls: true\n"

tests/golden/bgp-control-plane/cilium/cilium/01_cilium_helmchart/cilium/templates/hubble-relay/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737
- serve
3838
command:
3939
- hubble-relay
40-
image: quay.io/cilium/hubble-relay:v1.16.4@sha256:fb2c7d127a1c809f6ba23c05973f3dd00f6b6a48e4aee2da95db925a4f0351d2
40+
image: quay.io/cilium/hubble-relay:v1.16.8@sha256:498c04894fc95b6792d713dfb5e11aad236d41433710ddf73425483e855170be
4141
imagePullPolicy: IfNotPresent
4242
livenessProbe:
4343
failureThreshold: 12

tests/golden/defaults/cilium/cilium/01_cilium_helmchart/cilium/templates/cilium-agent/daemonset.yaml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ spec:
5454
resourceFieldRef:
5555
divisor: '1'
5656
resource: limits.memory
57-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
57+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
5858
imagePullPolicy: IfNotPresent
5959
lifecycle:
6060
postStart:
@@ -178,6 +178,9 @@ spec:
178178
name: bpf-maps
179179
- mountPath: /var/run/cilium
180180
name: cilium-run
181+
- mountPath: /var/run/cilium/netns
182+
mountPropagation: HostToContainer
183+
name: cilium-netns
181184
- mountPath: /host/etc/cni/net.d
182185
name: etc-cni-netd
183186
- mountPath: /var/lib/cilium/clustermesh
@@ -206,7 +209,7 @@ spec:
206209
fieldRef:
207210
apiVersion: v1
208211
fieldPath: metadata.namespace
209-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
212+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
210213
imagePullPolicy: IfNotPresent
211214
name: config
212215
terminationMessagePolicy: FallbackToLogsOnError
@@ -225,7 +228,7 @@ spec:
225228
value: /run/cilium/cgroupv2
226229
- name: BIN_PATH
227230
value: /var/lib/cni/bin
228-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
231+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
229232
imagePullPolicy: IfNotPresent
230233
name: mount-cgroup
231234
securityContext:
@@ -255,7 +258,7 @@ spec:
255258
env:
256259
- name: BIN_PATH
257260
value: /var/lib/cni/bin
258-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
261+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
259262
imagePullPolicy: IfNotPresent
260263
name: apply-sysctl-overwrites
261264
securityContext:
@@ -281,7 +284,7 @@ spec:
281284
- /bin/bash
282285
- -c
283286
- --
284-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
287+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
285288
imagePullPolicy: IfNotPresent
286289
name: mount-bpf-fs
287290
securityContext:
@@ -312,7 +315,7 @@ spec:
312315
key: write-cni-conf-when-ready
313316
name: cilium-config
314317
optional: true
315-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
318+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
316319
imagePullPolicy: IfNotPresent
317320
name: clean-cilium-state
318321
securityContext:
@@ -338,7 +341,7 @@ spec:
338341
name: cilium-run
339342
- command:
340343
- /install-plugin.sh
341-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
344+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
342345
imagePullPolicy: IfNotPresent
343346
name: install-cni-binaries
344347
resources:
@@ -371,6 +374,10 @@ spec:
371374
path: /var/run/cilium
372375
type: DirectoryOrCreate
373376
name: cilium-run
377+
- hostPath:
378+
path: /var/run/netns
379+
type: DirectoryOrCreate
380+
name: cilium-netns
374381
- hostPath:
375382
path: /sys/fs/bpf
376383
type: DirectoryOrCreate

tests/golden/defaults/cilium/cilium/01_cilium_helmchart/cilium/templates/cilium-configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ data:
1010
bpf-lb-external-clusterip: 'false'
1111
bpf-lb-map-max: '65536'
1212
bpf-lb-sock: 'false'
13-
bpf-lb-sock-terminate-pod-connections: 'false'
1413
bpf-map-dynamic-size-ratio: '0.0025'
1514
bpf-policy-map-max: '16384'
1615
bpf-root: /sys/fs/bpf
@@ -64,6 +63,7 @@ data:
6463
enable-vtep: 'false'
6564
enable-well-known-identities: 'false'
6665
enable-xt-socket-fallback: 'true'
66+
envoy-access-log-buffer-size: '4096'
6767
envoy-base-id: '0'
6868
envoy-keep-cap-netbindservice: 'false'
6969
external-envoy-proxy: 'false'

tests/golden/defaults/cilium/cilium/01_cilium_helmchart/cilium/templates/cilium-operator/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ spec:
5959
key: debug
6060
name: cilium-config
6161
optional: true
62-
image: quay.io/cilium/operator-generic:v1.16.4@sha256:c55a7cbe19fe0b6b28903a085334edb586a3201add9db56d2122c8485f7a51c5
62+
image: quay.io/cilium/operator-generic:v1.16.8@sha256:86c879ed25396a992fb8bf0297289f0b61f30f9a4a260f483abbdb39d919644d
6363
imagePullPolicy: IfNotPresent
6464
livenessProbe:
6565
httpGet:

tests/golden/defaults/cilium/cilium/01_cilium_helmchart/cilium/templates/hubble-relay/configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
data:
3-
config.yaml: "cluster-name: default\npeer-service: \"hubble-peer.cilium.svc.cluster.local:80\"\
3+
config.yaml: "cluster-name: default\npeer-service: \"hubble-peer.cilium.svc.cluster.local.:80\"\
44
\nlisten-address: :4245\ngops: true\ngops-port: \"9893\"\ndial-timeout: \nretry-timeout:\
55
\ \nsort-buffer-len-max: \nsort-buffer-drain-timeout: \ndisable-client-tls: true\n\
66
\ndisable-server-tls: true\n"

tests/golden/defaults/cilium/cilium/01_cilium_helmchart/cilium/templates/hubble-relay/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737
- serve
3838
command:
3939
- hubble-relay
40-
image: quay.io/cilium/hubble-relay:v1.16.4@sha256:fb2c7d127a1c809f6ba23c05973f3dd00f6b6a48e4aee2da95db925a4f0351d2
40+
image: quay.io/cilium/hubble-relay:v1.16.8@sha256:498c04894fc95b6792d713dfb5e11aad236d41433710ddf73425483e855170be
4141
imagePullPolicy: IfNotPresent
4242
livenessProbe:
4343
failureThreshold: 12

tests/golden/egress-gateway/cilium/cilium/01_cilium_helmchart/cilium/templates/cilium-agent/daemonset.yaml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ spec:
5454
resourceFieldRef:
5555
divisor: '1'
5656
resource: limits.memory
57-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
57+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
5858
imagePullPolicy: IfNotPresent
5959
lifecycle:
6060
postStart:
@@ -178,6 +178,9 @@ spec:
178178
name: bpf-maps
179179
- mountPath: /var/run/cilium
180180
name: cilium-run
181+
- mountPath: /var/run/cilium/netns
182+
mountPropagation: HostToContainer
183+
name: cilium-netns
181184
- mountPath: /host/etc/cni/net.d
182185
name: etc-cni-netd
183186
- mountPath: /var/lib/cilium/clustermesh
@@ -206,7 +209,7 @@ spec:
206209
fieldRef:
207210
apiVersion: v1
208211
fieldPath: metadata.namespace
209-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
212+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
210213
imagePullPolicy: IfNotPresent
211214
name: config
212215
terminationMessagePolicy: FallbackToLogsOnError
@@ -225,7 +228,7 @@ spec:
225228
value: /run/cilium/cgroupv2
226229
- name: BIN_PATH
227230
value: /var/lib/cni/bin
228-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
231+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
229232
imagePullPolicy: IfNotPresent
230233
name: mount-cgroup
231234
securityContext:
@@ -255,7 +258,7 @@ spec:
255258
env:
256259
- name: BIN_PATH
257260
value: /var/lib/cni/bin
258-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
261+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
259262
imagePullPolicy: IfNotPresent
260263
name: apply-sysctl-overwrites
261264
securityContext:
@@ -281,7 +284,7 @@ spec:
281284
- /bin/bash
282285
- -c
283286
- --
284-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
287+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
285288
imagePullPolicy: IfNotPresent
286289
name: mount-bpf-fs
287290
securityContext:
@@ -312,7 +315,7 @@ spec:
312315
key: write-cni-conf-when-ready
313316
name: cilium-config
314317
optional: true
315-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
318+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
316319
imagePullPolicy: IfNotPresent
317320
name: clean-cilium-state
318321
securityContext:
@@ -338,7 +341,7 @@ spec:
338341
name: cilium-run
339342
- command:
340343
- /install-plugin.sh
341-
image: quay.io/cilium/cilium:v1.16.4@sha256:d55ec38938854133e06739b1af237932b9c4dd4e75e9b7b2ca3acc72540a44bf
344+
image: quay.io/cilium/cilium:v1.16.8@sha256:569ec9056ef2e3b283edb508b31e4ff04058cb7bd551cc9433512ebdef07804d
342345
imagePullPolicy: IfNotPresent
343346
name: install-cni-binaries
344347
resources:
@@ -371,6 +374,10 @@ spec:
371374
path: /var/run/cilium
372375
type: DirectoryOrCreate
373376
name: cilium-run
377+
- hostPath:
378+
path: /var/run/netns
379+
type: DirectoryOrCreate
380+
name: cilium-netns
374381
- hostPath:
375382
path: /sys/fs/bpf
376383
type: DirectoryOrCreate

tests/golden/egress-gateway/cilium/cilium/01_cilium_helmchart/cilium/templates/cilium-configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ data:
1010
bpf-lb-external-clusterip: 'false'
1111
bpf-lb-map-max: '65536'
1212
bpf-lb-sock: 'false'
13-
bpf-lb-sock-terminate-pod-connections: 'false'
1413
bpf-map-dynamic-size-ratio: '0.0025'
1514
bpf-policy-map-max: '16384'
1615
bpf-root: /sys/fs/bpf
@@ -65,6 +64,7 @@ data:
6564
enable-vtep: 'false'
6665
enable-well-known-identities: 'false'
6766
enable-xt-socket-fallback: 'true'
67+
envoy-access-log-buffer-size: '4096'
6868
envoy-base-id: '0'
6969
envoy-keep-cap-netbindservice: 'false'
7070
external-envoy-proxy: 'false'

tests/golden/egress-gateway/cilium/cilium/01_cilium_helmchart/cilium/templates/cilium-operator/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ spec:
5959
key: debug
6060
name: cilium-config
6161
optional: true
62-
image: quay.io/cilium/operator-generic:v1.16.4@sha256:c55a7cbe19fe0b6b28903a085334edb586a3201add9db56d2122c8485f7a51c5
62+
image: quay.io/cilium/operator-generic:v1.16.8@sha256:86c879ed25396a992fb8bf0297289f0b61f30f9a4a260f483abbdb39d919644d
6363
imagePullPolicy: IfNotPresent
6464
livenessProbe:
6565
httpGet:

tests/golden/egress-gateway/cilium/cilium/01_cilium_helmchart/cilium/templates/hubble-relay/configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
data:
3-
config.yaml: "cluster-name: default\npeer-service: \"hubble-peer.cilium.svc.cluster.local:80\"\
3+
config.yaml: "cluster-name: default\npeer-service: \"hubble-peer.cilium.svc.cluster.local.:80\"\
44
\nlisten-address: :4245\ngops: true\ngops-port: \"9893\"\ndial-timeout: \nretry-timeout:\
55
\ \nsort-buffer-len-max: \nsort-buffer-drain-timeout: \ndisable-client-tls: true\n\
66
\ndisable-server-tls: true\n"

tests/golden/egress-gateway/cilium/cilium/01_cilium_helmchart/cilium/templates/hubble-relay/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737
- serve
3838
command:
3939
- hubble-relay
40-
image: quay.io/cilium/hubble-relay:v1.16.4@sha256:fb2c7d127a1c809f6ba23c05973f3dd00f6b6a48e4aee2da95db925a4f0351d2
40+
image: quay.io/cilium/hubble-relay:v1.16.8@sha256:498c04894fc95b6792d713dfb5e11aad236d41433710ddf73425483e855170be
4141
imagePullPolicy: IfNotPresent
4242
livenessProbe:
4343
failureThreshold: 12

0 commit comments

Comments
 (0)