From 713aa9515815a441304a027a9fe1732077825025 Mon Sep 17 00:00:00 2001 From: shawnh2 Date: Tue, 16 Sep 2025 19:29:38 +0800 Subject: [PATCH 1/2] bump ratelimit image version Signed-off-by: shawnh2 --- api/v1alpha1/shared_types.go | 2 +- charts/gateway-helm/README.md | 2 +- charts/gateway-helm/values.tmpl.yaml | 2 +- .../kubernetes/ratelimit/testdata/deployments/default.yaml | 2 +- .../ratelimit/testdata/deployments/disable-prometheus.yaml | 2 +- .../ratelimit/testdata/deployments/enable-tracing-custom.yaml | 2 +- .../ratelimit/testdata/deployments/enable-tracing.yaml | 2 +- .../ratelimit/testdata/deployments/merge-annotations.yaml | 2 +- .../kubernetes/ratelimit/testdata/deployments/merge-labels.yaml | 2 +- .../testdata/deployments/patch-deployment-containers.yaml | 2 +- .../ratelimit/testdata/deployments/patch-deployment.yaml | 2 +- .../ratelimit/testdata/deployments/with-node-selector.yaml | 2 +- .../testdata/deployments/with-topology-spread-constraints.yaml | 2 +- site/content/en/latest/install/gateway-helm-api.md | 2 +- test/helm/gateway-helm/certgen-args.out.yaml | 2 +- test/helm/gateway-helm/certjen-custom-scheduling.out.yaml | 2 +- test/helm/gateway-helm/control-plane-with-pdb.out.yaml | 2 +- test/helm/gateway-helm/default-config.out.yaml | 2 +- test/helm/gateway-helm/deployment-custom-topology.out.yaml | 2 +- test/helm/gateway-helm/deployment-images-config.out.yaml | 2 +- test/helm/gateway-helm/deployment-priorityclass.out.yaml | 2 +- test/helm/gateway-helm/deployment-repo-no-registry.out.yaml | 2 +- test/helm/gateway-helm/deployment-securitycontext.out.yaml | 2 +- .../envoy-gateway-gateway-namespace-config-watch.out.yaml | 2 +- .../envoy-gateway-gateway-namespace-config.out.yaml | 2 +- test/helm/gateway-helm/horizontal-pod-autoscaler.out.yaml | 2 +- test/helm/gateway-helm/service-customization.out.yaml | 2 +- test/helm/gateway-helm/webhook-disabled.out.yaml | 2 +- 28 files changed, 28 insertions(+), 28 deletions(-) diff --git a/api/v1alpha1/shared_types.go b/api/v1alpha1/shared_types.go index de2dae7410..d81e94d606 100644 --- a/api/v1alpha1/shared_types.go +++ b/api/v1alpha1/shared_types.go @@ -32,7 +32,7 @@ const ( // DefaultShutdownManagerImage is the default image used for the shutdown manager. DefaultShutdownManagerImage = "docker.io/envoyproxy/gateway-dev:latest" // DefaultRateLimitImage is the default image used by ratelimit. - DefaultRateLimitImage = "docker.io/envoyproxy/ratelimit:bb4dae24" + DefaultRateLimitImage = "docker.io/envoyproxy/ratelimit:e74a664a" // HTTPProtocol is the common-used http protocol. HTTPProtocol = "http" // GRPCProtocol is the common-used grpc protocol. diff --git a/charts/gateway-helm/README.md b/charts/gateway-helm/README.md index 641fa0c3b2..fe8bb3062e 100644 --- a/charts/gateway-helm/README.md +++ b/charts/gateway-helm/README.md @@ -102,7 +102,7 @@ To uninstall the chart: | global.images.envoyGateway.image | string | `nil` | | | global.images.envoyGateway.pullPolicy | string | `nil` | | | global.images.envoyGateway.pullSecrets | list | `[]` | | -| global.images.ratelimit.image | string | `"docker.io/envoyproxy/ratelimit:bb4dae24"` | | +| global.images.ratelimit.image | string | `"docker.io/envoyproxy/ratelimit:e74a664a"` | | | global.images.ratelimit.pullPolicy | string | `"IfNotPresent"` | | | global.images.ratelimit.pullSecrets | list | `[]` | | | hpa.behavior | object | `{}` | | diff --git a/charts/gateway-helm/values.tmpl.yaml b/charts/gateway-helm/values.tmpl.yaml index ec63075f1a..03f9dc683f 100644 --- a/charts/gateway-helm/values.tmpl.yaml +++ b/charts/gateway-helm/values.tmpl.yaml @@ -19,7 +19,7 @@ global: pullSecrets: [] ratelimit: # This is the full image name including the hub, repo, and tag. - image: "docker.io/envoyproxy/ratelimit:bb4dae24" + image: "docker.io/envoyproxy/ratelimit:e74a664a" # Specify image pull policy if default behavior isn't desired. # Default behavior: latest images will be Always else IfNotPresent. pullPolicy: IfNotPresent diff --git a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/default.yaml b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/default.yaml index 73cbf28500..4195412cd0 100644 --- a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/default.yaml +++ b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/default.yaml @@ -86,7 +86,7 @@ spec: value: :19001 - name: PROMETHEUS_MAPPER_YAML value: /etc/statsd-exporter/conf.yaml - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 3 diff --git a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/disable-prometheus.yaml b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/disable-prometheus.yaml index 5c78f48686..ea3ec6397e 100644 --- a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/disable-prometheus.yaml +++ b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/disable-prometheus.yaml @@ -76,7 +76,7 @@ spec: value: tcp - name: REDIS_URL value: redis.redis.svc:6379 - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 3 diff --git a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/enable-tracing-custom.yaml b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/enable-tracing-custom.yaml index a213d89943..ddc1004f1e 100644 --- a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/enable-tracing-custom.yaml +++ b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/enable-tracing-custom.yaml @@ -101,7 +101,7 @@ spec: value: "0.6" - name: OTEL_EXPORTER_OTLP_ENDPOINT value: http://trace-collector.envoy-gateway-system.svc.cluster.local:4317 - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 3 diff --git a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/enable-tracing.yaml b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/enable-tracing.yaml index 172da14a01..ce64570326 100644 --- a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/enable-tracing.yaml +++ b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/enable-tracing.yaml @@ -101,7 +101,7 @@ spec: value: "1.0" - name: OTEL_EXPORTER_OTLP_ENDPOINT value: http://trace-collector.envoy-gateway-system.svc.cluster.local:4318 - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 3 diff --git a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/merge-annotations.yaml b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/merge-annotations.yaml index 4c58856886..149a680873 100644 --- a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/merge-annotations.yaml +++ b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/merge-annotations.yaml @@ -88,7 +88,7 @@ spec: value: :19001 - name: PROMETHEUS_MAPPER_YAML value: /etc/statsd-exporter/conf.yaml - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 3 diff --git a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/merge-labels.yaml b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/merge-labels.yaml index bbc4228980..5bad4e555f 100644 --- a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/merge-labels.yaml +++ b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/merge-labels.yaml @@ -88,7 +88,7 @@ spec: value: :19001 - name: PROMETHEUS_MAPPER_YAML value: /etc/statsd-exporter/conf.yaml - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 3 diff --git a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/patch-deployment-containers.yaml b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/patch-deployment-containers.yaml index 490d14169c..42131d4071 100644 --- a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/patch-deployment-containers.yaml +++ b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/patch-deployment-containers.yaml @@ -88,7 +88,7 @@ spec: value: :19001 - name: PROMETHEUS_MAPPER_YAML value: /etc/statsd-exporter/conf.yaml - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a imagePullPolicy: Always livenessProbe: failureThreshold: 3 diff --git a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/patch-deployment.yaml b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/patch-deployment.yaml index 14e9517cfa..7f11e98bab 100644 --- a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/patch-deployment.yaml +++ b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/patch-deployment.yaml @@ -86,7 +86,7 @@ spec: value: :19001 - name: PROMETHEUS_MAPPER_YAML value: /etc/statsd-exporter/conf.yaml - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 3 diff --git a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/with-node-selector.yaml b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/with-node-selector.yaml index fc7545e67f..ce24035e57 100644 --- a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/with-node-selector.yaml +++ b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/with-node-selector.yaml @@ -86,7 +86,7 @@ spec: value: :19001 - name: PROMETHEUS_MAPPER_YAML value: /etc/statsd-exporter/conf.yaml - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 3 diff --git a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/with-topology-spread-constraints.yaml b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/with-topology-spread-constraints.yaml index 3da80c3a05..1daa909a0b 100644 --- a/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/with-topology-spread-constraints.yaml +++ b/internal/infrastructure/kubernetes/ratelimit/testdata/deployments/with-topology-spread-constraints.yaml @@ -86,7 +86,7 @@ spec: value: :19001 - name: PROMETHEUS_MAPPER_YAML value: /etc/statsd-exporter/conf.yaml - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 3 diff --git a/site/content/en/latest/install/gateway-helm-api.md b/site/content/en/latest/install/gateway-helm-api.md index fe85357be8..cca7fd40e6 100644 --- a/site/content/en/latest/install/gateway-helm-api.md +++ b/site/content/en/latest/install/gateway-helm-api.md @@ -66,7 +66,7 @@ The Helm chart for Envoy Gateway | global.images.envoyGateway.image | string | `nil` | | | global.images.envoyGateway.pullPolicy | string | `nil` | | | global.images.envoyGateway.pullSecrets | list | `[]` | | -| global.images.ratelimit.image | string | `"docker.io/envoyproxy/ratelimit:bb4dae24"` | | +| global.images.ratelimit.image | string | `"docker.io/envoyproxy/ratelimit:e74a664a"` | | | global.images.ratelimit.pullPolicy | string | `"IfNotPresent"` | | | global.images.ratelimit.pullSecrets | list | `[]` | | | hpa.behavior | object | `{}` | | diff --git a/test/helm/gateway-helm/certgen-args.out.yaml b/test/helm/gateway-helm/certgen-args.out.yaml index 6d022d6482..4bc04cd396 100644 --- a/test/helm/gateway-helm/certgen-args.out.yaml +++ b/test/helm/gateway-helm/certgen-args.out.yaml @@ -38,7 +38,7 @@ data: kubernetes: rateLimitDeployment: container: - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a patch: type: StrategicMerge value: diff --git a/test/helm/gateway-helm/certjen-custom-scheduling.out.yaml b/test/helm/gateway-helm/certjen-custom-scheduling.out.yaml index 0043983063..526fe57af1 100644 --- a/test/helm/gateway-helm/certjen-custom-scheduling.out.yaml +++ b/test/helm/gateway-helm/certjen-custom-scheduling.out.yaml @@ -38,7 +38,7 @@ data: kubernetes: rateLimitDeployment: container: - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a patch: type: StrategicMerge value: diff --git a/test/helm/gateway-helm/control-plane-with-pdb.out.yaml b/test/helm/gateway-helm/control-plane-with-pdb.out.yaml index 0d1ff29ae8..2af909a957 100644 --- a/test/helm/gateway-helm/control-plane-with-pdb.out.yaml +++ b/test/helm/gateway-helm/control-plane-with-pdb.out.yaml @@ -53,7 +53,7 @@ data: kubernetes: rateLimitDeployment: container: - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a patch: type: StrategicMerge value: diff --git a/test/helm/gateway-helm/default-config.out.yaml b/test/helm/gateway-helm/default-config.out.yaml index 255beebc8a..dead8e8579 100644 --- a/test/helm/gateway-helm/default-config.out.yaml +++ b/test/helm/gateway-helm/default-config.out.yaml @@ -38,7 +38,7 @@ data: kubernetes: rateLimitDeployment: container: - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a patch: type: StrategicMerge value: diff --git a/test/helm/gateway-helm/deployment-custom-topology.out.yaml b/test/helm/gateway-helm/deployment-custom-topology.out.yaml index 8ea23dc361..f71ba86b84 100644 --- a/test/helm/gateway-helm/deployment-custom-topology.out.yaml +++ b/test/helm/gateway-helm/deployment-custom-topology.out.yaml @@ -38,7 +38,7 @@ data: kubernetes: rateLimitDeployment: container: - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a patch: type: StrategicMerge value: diff --git a/test/helm/gateway-helm/deployment-images-config.out.yaml b/test/helm/gateway-helm/deployment-images-config.out.yaml index ccde628919..89570928ab 100644 --- a/test/helm/gateway-helm/deployment-images-config.out.yaml +++ b/test/helm/gateway-helm/deployment-images-config.out.yaml @@ -38,7 +38,7 @@ data: kubernetes: rateLimitDeployment: container: - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a patch: type: StrategicMerge value: diff --git a/test/helm/gateway-helm/deployment-priorityclass.out.yaml b/test/helm/gateway-helm/deployment-priorityclass.out.yaml index 85e03a90a7..33f66a30fa 100644 --- a/test/helm/gateway-helm/deployment-priorityclass.out.yaml +++ b/test/helm/gateway-helm/deployment-priorityclass.out.yaml @@ -38,7 +38,7 @@ data: kubernetes: rateLimitDeployment: container: - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a patch: type: StrategicMerge value: diff --git a/test/helm/gateway-helm/deployment-repo-no-registry.out.yaml b/test/helm/gateway-helm/deployment-repo-no-registry.out.yaml index 63f21ef2b4..96a748e7ab 100644 --- a/test/helm/gateway-helm/deployment-repo-no-registry.out.yaml +++ b/test/helm/gateway-helm/deployment-repo-no-registry.out.yaml @@ -38,7 +38,7 @@ data: kubernetes: rateLimitDeployment: container: - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a patch: type: StrategicMerge value: diff --git a/test/helm/gateway-helm/deployment-securitycontext.out.yaml b/test/helm/gateway-helm/deployment-securitycontext.out.yaml index 8fa13a259b..c36db32547 100644 --- a/test/helm/gateway-helm/deployment-securitycontext.out.yaml +++ b/test/helm/gateway-helm/deployment-securitycontext.out.yaml @@ -38,7 +38,7 @@ data: kubernetes: rateLimitDeployment: container: - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a patch: type: StrategicMerge value: diff --git a/test/helm/gateway-helm/envoy-gateway-gateway-namespace-config-watch.out.yaml b/test/helm/gateway-helm/envoy-gateway-gateway-namespace-config-watch.out.yaml index 9604fcda61..91306bd275 100644 --- a/test/helm/gateway-helm/envoy-gateway-gateway-namespace-config-watch.out.yaml +++ b/test/helm/gateway-helm/envoy-gateway-gateway-namespace-config-watch.out.yaml @@ -40,7 +40,7 @@ data: type: GatewayNamespace rateLimitDeployment: container: - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a patch: type: StrategicMerge value: diff --git a/test/helm/gateway-helm/envoy-gateway-gateway-namespace-config.out.yaml b/test/helm/gateway-helm/envoy-gateway-gateway-namespace-config.out.yaml index 9103a7c6af..27dece5ac9 100644 --- a/test/helm/gateway-helm/envoy-gateway-gateway-namespace-config.out.yaml +++ b/test/helm/gateway-helm/envoy-gateway-gateway-namespace-config.out.yaml @@ -40,7 +40,7 @@ data: type: GatewayNamespace rateLimitDeployment: container: - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a patch: type: StrategicMerge value: diff --git a/test/helm/gateway-helm/horizontal-pod-autoscaler.out.yaml b/test/helm/gateway-helm/horizontal-pod-autoscaler.out.yaml index 3142036bc5..e891eed64a 100644 --- a/test/helm/gateway-helm/horizontal-pod-autoscaler.out.yaml +++ b/test/helm/gateway-helm/horizontal-pod-autoscaler.out.yaml @@ -38,7 +38,7 @@ data: kubernetes: rateLimitDeployment: container: - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a patch: type: StrategicMerge value: diff --git a/test/helm/gateway-helm/service-customization.out.yaml b/test/helm/gateway-helm/service-customization.out.yaml index 4d1b032f89..8ceaaedbfd 100644 --- a/test/helm/gateway-helm/service-customization.out.yaml +++ b/test/helm/gateway-helm/service-customization.out.yaml @@ -38,7 +38,7 @@ data: kubernetes: rateLimitDeployment: container: - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a patch: type: StrategicMerge value: diff --git a/test/helm/gateway-helm/webhook-disabled.out.yaml b/test/helm/gateway-helm/webhook-disabled.out.yaml index cb693357f3..aead1d7525 100644 --- a/test/helm/gateway-helm/webhook-disabled.out.yaml +++ b/test/helm/gateway-helm/webhook-disabled.out.yaml @@ -38,7 +38,7 @@ data: kubernetes: rateLimitDeployment: container: - image: docker.io/envoyproxy/ratelimit:bb4dae24 + image: docker.io/envoyproxy/ratelimit:e74a664a patch: type: StrategicMerge value: From d06f5baf76a8fce8165129e44ebdb2120a0a570d Mon Sep 17 00:00:00 2001 From: shawnh2 Date: Wed, 17 Sep 2025 19:31:42 +0800 Subject: [PATCH 2/2] bump envoyproxy tag Signed-off-by: shawnh2 --- api/v1alpha1/shared_types.go | 2 +- .../kubernetes/proxy/testdata/daemonsets/component-level.yaml | 2 +- .../kubernetes/proxy/testdata/daemonsets/default.yaml | 2 +- .../proxy/testdata/daemonsets/disable-prometheus.yaml | 2 +- .../proxy/testdata/daemonsets/gateway-namespace-mode.yaml | 2 +- .../testdata/daemonsets/override-labels-and-annotations.yaml | 2 +- .../kubernetes/proxy/testdata/daemonsets/patch-daemonset.yaml | 2 +- .../proxy/testdata/daemonsets/shutdown-manager.yaml | 2 +- .../proxy/testdata/daemonsets/with-annotations.yaml | 2 +- .../proxy/testdata/daemonsets/with-concurrency.yaml | 2 +- .../kubernetes/proxy/testdata/daemonsets/with-extra-args.yaml | 2 +- .../proxy/testdata/daemonsets/with-image-pull-secrets.yaml | 2 +- .../kubernetes/proxy/testdata/daemonsets/with-name.yaml | 2 +- .../proxy/testdata/daemonsets/with-node-selector.yaml | 2 +- .../testdata/daemonsets/with-topology-spread-constraints.yaml | 2 +- .../kubernetes/proxy/testdata/deployments/bootstrap.yaml | 2 +- .../proxy/testdata/deployments/component-level.yaml | 2 +- .../kubernetes/proxy/testdata/deployments/default.yaml | 2 +- .../proxy/testdata/deployments/disable-prometheus.yaml | 2 +- .../kubernetes/proxy/testdata/deployments/dual-stack.yaml | 2 +- .../proxy/testdata/deployments/gateway-namespace-mode.yaml | 2 +- .../kubernetes/proxy/testdata/deployments/ipv6.yaml | 2 +- .../testdata/deployments/override-labels-and-annotations.yaml | 2 +- .../proxy/testdata/deployments/patch-deployment.yaml | 2 +- .../proxy/testdata/deployments/shutdown-manager.yaml | 2 +- .../proxy/testdata/deployments/with-annotations.yaml | 2 +- .../proxy/testdata/deployments/with-concurrency.yaml | 2 +- .../proxy/testdata/deployments/with-empty-memory-limits.yaml | 2 +- .../proxy/testdata/deployments/with-extra-args.yaml | 2 +- .../proxy/testdata/deployments/with-image-pull-secrets.yaml | 2 +- .../kubernetes/proxy/testdata/deployments/with-name.yaml | 2 +- .../proxy/testdata/deployments/with-node-selector.yaml | 2 +- .../deployments/with-topology-spread-constraints.yaml | 2 +- .../proxy/testdata/gateway-namespace-mode/deployment.yaml | 4 ++-- 34 files changed, 35 insertions(+), 35 deletions(-) diff --git a/api/v1alpha1/shared_types.go b/api/v1alpha1/shared_types.go index d81e94d606..65c9ba1632 100644 --- a/api/v1alpha1/shared_types.go +++ b/api/v1alpha1/shared_types.go @@ -24,7 +24,7 @@ const ( // DefaultDeploymentMemoryResourceRequests for deployment memory resource DefaultDeploymentMemoryResourceRequests = "512Mi" // DefaultEnvoyProxyImage is the default image used by envoyproxy - DefaultEnvoyProxyImage = "docker.io/envoyproxy/envoy:distroless-v1.34.4" + DefaultEnvoyProxyImage = "docker.io/envoyproxy/envoy:distroless-v1.34.7" // DefaultShutdownManagerCPUResourceRequests for shutdown manager cpu resource DefaultShutdownManagerCPUResourceRequests = "10m" // DefaultShutdownManagerMemoryResourceRequests for shutdown manager memory resource diff --git a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/component-level.yaml b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/component-level.yaml index 4f91a02be2..37488699dc 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/component-level.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/component-level.yaml @@ -61,7 +61,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/default.yaml b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/default.yaml index fd35f20ae8..678d06f4b1 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/default.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/default.yaml @@ -248,7 +248,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/disable-prometheus.yaml b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/disable-prometheus.yaml index 4ec57f73c4..919e930bd5 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/disable-prometheus.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/disable-prometheus.yaml @@ -197,7 +197,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/gateway-namespace-mode.yaml b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/gateway-namespace-mode.yaml index 0631c3f77d..b2954ef271 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/gateway-namespace-mode.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/gateway-namespace-mode.yaml @@ -274,7 +274,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/override-labels-and-annotations.yaml b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/override-labels-and-annotations.yaml index 713e12e0fb..878a679cc7 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/override-labels-and-annotations.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/override-labels-and-annotations.yaml @@ -257,7 +257,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/patch-daemonset.yaml b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/patch-daemonset.yaml index 88a8144239..97be93e70d 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/patch-daemonset.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/patch-daemonset.yaml @@ -248,7 +248,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/shutdown-manager.yaml b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/shutdown-manager.yaml index b735aab6ca..47c4cfc2a7 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/shutdown-manager.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/shutdown-manager.yaml @@ -248,7 +248,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-annotations.yaml b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-annotations.yaml index df41463493..46e2b90e44 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-annotations.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-annotations.yaml @@ -253,7 +253,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-concurrency.yaml b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-concurrency.yaml index cdce6c29aa..ccb8dbdc41 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-concurrency.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-concurrency.yaml @@ -61,7 +61,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-extra-args.yaml b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-extra-args.yaml index 4e789999f1..3726af228e 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-extra-args.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-extra-args.yaml @@ -250,7 +250,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-image-pull-secrets.yaml b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-image-pull-secrets.yaml index 4d0b7adf11..d44f85694e 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-image-pull-secrets.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-image-pull-secrets.yaml @@ -248,7 +248,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-name.yaml b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-name.yaml index 8ebb8cb6e6..95b53e5dc3 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-name.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-name.yaml @@ -248,7 +248,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-node-selector.yaml b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-node-selector.yaml index 2ee9962a1c..4e1bb308a3 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-node-selector.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-node-selector.yaml @@ -248,7 +248,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-topology-spread-constraints.yaml b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-topology-spread-constraints.yaml index f7258967d7..7f55a003a1 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-topology-spread-constraints.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-topology-spread-constraints.yaml @@ -248,7 +248,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/bootstrap.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/bootstrap.yaml index 731185f573..2f56898a8d 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/bootstrap.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/bootstrap.yaml @@ -64,7 +64,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/component-level.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/component-level.yaml index db2341ea43..a41482dccd 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/component-level.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/component-level.yaml @@ -65,7 +65,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/default.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/default.yaml index bc876e025e..306004a1cb 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/default.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/default.yaml @@ -252,7 +252,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/disable-prometheus.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/disable-prometheus.yaml index d172452e4c..48efde3229 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/disable-prometheus.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/disable-prometheus.yaml @@ -201,7 +201,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/dual-stack.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/dual-stack.yaml index 940507cc57..e16eb72072 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/dual-stack.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/dual-stack.yaml @@ -253,7 +253,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/gateway-namespace-mode.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/gateway-namespace-mode.yaml index 13f316fcdf..74aef14160 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/gateway-namespace-mode.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/gateway-namespace-mode.yaml @@ -278,7 +278,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/ipv6.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/ipv6.yaml index 5bb0e41be3..6c343c38ae 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/ipv6.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/ipv6.yaml @@ -253,7 +253,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/override-labels-and-annotations.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/override-labels-and-annotations.yaml index 47deb4e258..4dc54db7de 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/override-labels-and-annotations.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/override-labels-and-annotations.yaml @@ -261,7 +261,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/patch-deployment.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/patch-deployment.yaml index 06c3dfb1b5..f8c494c673 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/patch-deployment.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/patch-deployment.yaml @@ -252,7 +252,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/shutdown-manager.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/shutdown-manager.yaml index e856f0fdd8..3a32880f19 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/shutdown-manager.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/shutdown-manager.yaml @@ -252,7 +252,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-annotations.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-annotations.yaml index 9ee8c77846..7fb5fc7afd 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-annotations.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-annotations.yaml @@ -257,7 +257,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-concurrency.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-concurrency.yaml index 036ee16867..d4d5cf0e4f 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-concurrency.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-concurrency.yaml @@ -65,7 +65,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-empty-memory-limits.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-empty-memory-limits.yaml index 105cf189ab..4b840d530c 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-empty-memory-limits.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-empty-memory-limits.yaml @@ -252,7 +252,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-extra-args.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-extra-args.yaml index 3125f95239..1978e3dda7 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-extra-args.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-extra-args.yaml @@ -254,7 +254,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-image-pull-secrets.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-image-pull-secrets.yaml index ba0f7896aa..336f56c350 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-image-pull-secrets.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-image-pull-secrets.yaml @@ -252,7 +252,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-name.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-name.yaml index 814649903c..35547185d8 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-name.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-name.yaml @@ -252,7 +252,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-node-selector.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-node-selector.yaml index 3704d10b6e..ba0bc5f1bc 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-node-selector.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-node-selector.yaml @@ -252,7 +252,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-topology-spread-constraints.yaml b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-topology-spread-constraints.yaml index ff73a97042..fc220bc299 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-topology-spread-constraints.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/deployments/with-topology-spread-constraints.yaml @@ -252,7 +252,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/internal/infrastructure/kubernetes/proxy/testdata/gateway-namespace-mode/deployment.yaml b/internal/infrastructure/kubernetes/proxy/testdata/gateway-namespace-mode/deployment.yaml index da839bf802..efde9794cf 100644 --- a/internal/infrastructure/kubernetes/proxy/testdata/gateway-namespace-mode/deployment.yaml +++ b/internal/infrastructure/kubernetes/proxy/testdata/gateway-namespace-mode/deployment.yaml @@ -278,7 +278,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: @@ -734,7 +734,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.annotations['topology.kubernetes.io/zone'] - image: docker.io/envoyproxy/envoy:distroless-v1.34.4 + image: docker.io/envoyproxy/envoy:distroless-v1.34.7 imagePullPolicy: IfNotPresent lifecycle: preStop: