Skip to content

Commit bfe2bc1

Browse files
authored
[release/v1.3] pin envoy and ratelimit image version (#5141)
Signed-off-by: Guy Daich <[email protected]>
1 parent 25dfe10 commit bfe2bc1

Some content is hidden

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

52 files changed

+53
-53
lines changed

api/v1alpha1/shared_types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ const (
2222
// DefaultDeploymentMemoryResourceRequests for deployment memory resource
2323
DefaultDeploymentMemoryResourceRequests = "512Mi"
2424
// DefaultEnvoyProxyImage is the default image used by envoyproxy
25-
DefaultEnvoyProxyImage = "docker.io/envoyproxy/envoy:distroless-dev"
25+
DefaultEnvoyProxyImage = "docker.io/envoyproxy/envoy:distroless-v1.33.0"
2626
// DefaultShutdownManagerCPUResourceRequests for shutdown manager cpu resource
2727
DefaultShutdownManagerCPUResourceRequests = "10m"
2828
// DefaultShutdownManagerMemoryResourceRequests for shutdown manager memory resource
2929
DefaultShutdownManagerMemoryResourceRequests = "32Mi"
3030
// DefaultShutdownManagerImage is the default image used for the shutdown manager.
3131
DefaultShutdownManagerImage = "docker.io/envoyproxy/gateway-dev:latest"
3232
// DefaultRateLimitImage is the default image used by ratelimit.
33-
DefaultRateLimitImage = "docker.io/envoyproxy/ratelimit:master"
33+
DefaultRateLimitImage = "docker.io/envoyproxy/ratelimit:60d8e81b"
3434
// HTTPProtocol is the common-used http protocol.
3535
HTTPProtocol = "http"
3636
// 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
@@ -12,7 +12,7 @@ global:
1212
pullSecrets: []
1313
ratelimit:
1414
# This is the full image name including the hub, repo, and tag.
15-
image: "docker.io/envoyproxy/ratelimit:master"
15+
image: "docker.io/envoyproxy/ratelimit:60d8e81b"
1616
# Specify image pull policy if default behavior isn't desired.
1717
# Default behavior: latest images will be Always else IfNotPresent.
1818
pullPolicy: IfNotPresent

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ spec:
5656
fieldRef:
5757
apiVersion: v1
5858
fieldPath: metadata.name
59-
image: docker.io/envoyproxy/envoy:distroless-dev
59+
image: docker.io/envoyproxy/envoy:distroless-v1.33.0
6060
imagePullPolicy: IfNotPresent
6161
lifecycle:
6262
preStop:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ spec:
227227
fieldRef:
228228
apiVersion: v1
229229
fieldPath: metadata.name
230-
image: docker.io/envoyproxy/envoy:distroless-dev
230+
image: docker.io/envoyproxy/envoy:distroless-v1.33.0
231231
imagePullPolicy: IfNotPresent
232232
lifecycle:
233233
preStop:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ spec:
198198
fieldRef:
199199
apiVersion: v1
200200
fieldPath: metadata.name
201-
image: docker.io/envoyproxy/envoy:distroless-dev
201+
image: docker.io/envoyproxy/envoy:distroless-v1.33.0
202202
imagePullPolicy: IfNotPresent
203203
lifecycle:
204204
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
@@ -236,7 +236,7 @@ spec:
236236
fieldRef:
237237
apiVersion: v1
238238
fieldPath: metadata.name
239-
image: docker.io/envoyproxy/envoy:distroless-dev
239+
image: docker.io/envoyproxy/envoy:distroless-v1.33.0
240240
imagePullPolicy: IfNotPresent
241241
lifecycle:
242242
preStop:

internal/infrastructure/kubernetes/proxy/testdata/daemonsets/patch-daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ spec:
227227
fieldRef:
228228
apiVersion: v1
229229
fieldPath: metadata.name
230-
image: docker.io/envoyproxy/envoy:distroless-dev
230+
image: docker.io/envoyproxy/envoy:distroless-v1.33.0
231231
imagePullPolicy: IfNotPresent
232232
lifecycle:
233233
preStop:

internal/infrastructure/kubernetes/proxy/testdata/daemonsets/shutdown-manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ spec:
227227
fieldRef:
228228
apiVersion: v1
229229
fieldPath: metadata.name
230-
image: docker.io/envoyproxy/envoy:distroless-dev
230+
image: docker.io/envoyproxy/envoy:distroless-v1.33.0
231231
imagePullPolicy: IfNotPresent
232232
lifecycle:
233233
preStop:

internal/infrastructure/kubernetes/proxy/testdata/daemonsets/with-annotations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ spec:
232232
fieldRef:
233233
apiVersion: v1
234234
fieldPath: metadata.name
235-
image: docker.io/envoyproxy/envoy:distroless-dev
235+
image: docker.io/envoyproxy/envoy:distroless-v1.33.0
236236
imagePullPolicy: IfNotPresent
237237
lifecycle:
238238
preStop:

0 commit comments

Comments
 (0)