Skip to content

Commit 31ce5cd

Browse files
authored
[release/v1.7] pin envoy and ratelimit image version (#8128)
1 parent 4547028 commit 31ce5cd

80 files changed

Lines changed: 82 additions & 82 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

api/v1alpha1/shared_types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ const (
2323
// DefaultDeploymentMemoryResourceRequests for deployment memory resource
2424
DefaultDeploymentMemoryResourceRequests = "512Mi"
2525
// DefaultEnvoyProxyImage is the default image used by envoyproxy
26-
DefaultEnvoyProxyImage = "docker.io/envoyproxy/envoy:distroless-dev"
26+
DefaultEnvoyProxyImage = "docker.io/envoyproxy/envoy:distroless-v1.37.0"
2727
// DefaultShutdownManagerCPUResourceRequests for shutdown manager cpu resource
2828
DefaultShutdownManagerCPUResourceRequests = "10m"
2929
// DefaultShutdownManagerMemoryResourceRequests for shutdown manager memory resource
3030
DefaultShutdownManagerMemoryResourceRequests = "32Mi"
3131
// DefaultShutdownManagerImage is the default image used for the shutdown manager.
3232
DefaultShutdownManagerImage = "docker.io/envoyproxy/gateway-dev:latest"
3333
// DefaultRateLimitImage is the default image used by ratelimit.
34-
DefaultRateLimitImage = "docker.io/envoyproxy/ratelimit:master"
34+
DefaultRateLimitImage = "docker.io/envoyproxy/ratelimit:3fb70258"
3535
// HTTPProtocol is the common-used http protocol.
3636
HTTPProtocol = "http"
3737
// GRPCProtocol is the common-used grpc protocol.

charts/gateway-helm/README.md

Lines changed: 1 addition & 1 deletion

charts/gateway-helm/values.tmpl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ global:
1919
pullSecrets: []
2020
ratelimit:
2121
# This is the full image name including the hub, repo, and tag.
22-
image: "docker.io/envoyproxy/ratelimit:master"
22+
image: "docker.io/envoyproxy/ratelimit:3fb70258"
2323
# Specify image pull policy if default behavior isn't desired.
2424
# Default behavior: latest images will be Always else IfNotPresent.
2525
pullPolicy: IfNotPresent

internal/envoygateway/config/loader/testdata/default.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ provider:
99
kubernetes:
1010
rateLimitDeployment:
1111
container:
12-
image: docker.io/envoyproxy/ratelimit:master
12+
image: docker.io/envoyproxy/ratelimit:3fb70258
1313
patch:
1414
type: StrategicMerge
1515
value:

internal/infrastructure/kubernetes/proxy/testdata/daemonsets/component-level.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ spec:
7171
fieldRef:
7272
apiVersion: v1
7373
fieldPath: metadata.annotations['topology.kubernetes.io/zone']
74-
image: docker.io/envoyproxy/envoy:distroless-dev
74+
image: docker.io/envoyproxy/envoy:distroless-v1.37.0
7575
imagePullPolicy: IfNotPresent
7676
lifecycle:
7777
preStop:

internal/infrastructure/kubernetes/proxy/testdata/daemonsets/default.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ spec:
234234
fieldRef:
235235
apiVersion: v1
236236
fieldPath: metadata.annotations['topology.kubernetes.io/zone']
237-
image: docker.io/envoyproxy/envoy:distroless-dev
237+
image: docker.io/envoyproxy/envoy:distroless-v1.37.0
238238
imagePullPolicy: IfNotPresent
239239
lifecycle:
240240
preStop:

internal/infrastructure/kubernetes/proxy/testdata/daemonsets/disable-prometheus.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ spec:
183183
fieldRef:
184184
apiVersion: v1
185185
fieldPath: metadata.annotations['topology.kubernetes.io/zone']
186-
image: docker.io/envoyproxy/envoy:distroless-dev
186+
image: docker.io/envoyproxy/envoy:distroless-v1.37.0
187187
imagePullPolicy: IfNotPresent
188188
lifecycle:
189189
preStop:

internal/infrastructure/kubernetes/proxy/testdata/daemonsets/gateway-namespace-mode.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ spec:
249249
fieldRef:
250250
apiVersion: v1
251251
fieldPath: metadata.annotations['topology.kubernetes.io/zone']
252-
image: docker.io/envoyproxy/envoy:distroless-dev
252+
image: docker.io/envoyproxy/envoy:distroless-v1.37.0
253253
imagePullPolicy: IfNotPresent
254254
lifecycle:
255255
preStop:

internal/infrastructure/kubernetes/proxy/testdata/daemonsets/override-labels-and-annotations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ spec:
243243
fieldRef:
244244
apiVersion: v1
245245
fieldPath: metadata.annotations['topology.kubernetes.io/zone']
246-
image: docker.io/envoyproxy/envoy:distroless-dev
246+
image: docker.io/envoyproxy/envoy:distroless-v1.37.0
247247
imagePullPolicy: IfNotPresent
248248
lifecycle:
249249
preStop:

internal/infrastructure/kubernetes/proxy/testdata/daemonsets/override-prometheus-annotations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ spec:
234234
fieldRef:
235235
apiVersion: v1
236236
fieldPath: metadata.annotations['topology.kubernetes.io/zone']
237-
image: docker.io/envoyproxy/envoy:distroless-dev
237+
image: docker.io/envoyproxy/envoy:distroless-v1.37.0
238238
imagePullPolicy: IfNotPresent
239239
lifecycle:
240240
preStop:

0 commit comments

Comments
 (0)