Skip to content

Commit 3f75d82

Browse files
authored
[release/v1.7] bump envoy ratelimit to c8765e89 (#8500)
* [release/v1.7] bump envoy ratelimit to c8765e89 Signed-off-by: Karol Szwaj <karol.szwaj@gmail.com> * [release/v1.7] add release note Signed-off-by: Karol Szwaj <karol.szwaj@gmail.com> * make generate Signed-off-by: Karol Szwaj <karol.szwaj@gmail.com> --------- Signed-off-by: Karol Szwaj <karol.szwaj@gmail.com>
1 parent 26b597f commit 3f75d82

File tree

44 files changed

+44
-44
lines changed

Some content is hidden

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

44 files changed

+44
-44
lines changed

api/v1alpha1/shared_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const (
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:3fb70258"
34+
DefaultRateLimitImage = "docker.io/envoyproxy/ratelimit:c8765e89"
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:3fb70258"
22+
image: "docker.io/envoyproxy/ratelimit:c8765e89"
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:3fb70258
12+
image: docker.io/envoyproxy/ratelimit:c8765e89
1313
patch:
1414
type: StrategicMerge
1515
value:

internal/infrastructure/kubernetes/ratelimit/testdata/deployments/default.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ spec:
8484
value: :19001
8585
- name: PROMETHEUS_MAPPER_YAML
8686
value: /etc/statsd-exporter/conf.yaml
87-
image: docker.io/envoyproxy/ratelimit:3fb70258
87+
image: docker.io/envoyproxy/ratelimit:c8765e89
8888
imagePullPolicy: IfNotPresent
8989
livenessProbe:
9090
failureThreshold: 3

internal/infrastructure/kubernetes/ratelimit/testdata/deployments/disable-prometheus.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ spec:
7474
value: tcp
7575
- name: REDIS_URL
7676
value: redis.redis.svc:6379
77-
image: docker.io/envoyproxy/ratelimit:3fb70258
77+
image: docker.io/envoyproxy/ratelimit:c8765e89
7878
imagePullPolicy: IfNotPresent
7979
livenessProbe:
8080
failureThreshold: 3

internal/infrastructure/kubernetes/ratelimit/testdata/deployments/enable-tracing-custom.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ spec:
9999
value: "0.6"
100100
- name: OTEL_EXPORTER_OTLP_ENDPOINT
101101
value: http://trace-collector.envoy-gateway-system.svc.cluster.local:4317
102-
image: docker.io/envoyproxy/ratelimit:3fb70258
102+
image: docker.io/envoyproxy/ratelimit:c8765e89
103103
imagePullPolicy: IfNotPresent
104104
livenessProbe:
105105
failureThreshold: 3

internal/infrastructure/kubernetes/ratelimit/testdata/deployments/enable-tracing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ spec:
9999
value: "1.0"
100100
- name: OTEL_EXPORTER_OTLP_ENDPOINT
101101
value: http://trace-collector.envoy-gateway-system.svc.cluster.local:4318
102-
image: docker.io/envoyproxy/ratelimit:3fb70258
102+
image: docker.io/envoyproxy/ratelimit:c8765e89
103103
imagePullPolicy: IfNotPresent
104104
livenessProbe:
105105
failureThreshold: 3

internal/infrastructure/kubernetes/ratelimit/testdata/deployments/merge-annotations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ spec:
8686
value: :19001
8787
- name: PROMETHEUS_MAPPER_YAML
8888
value: /etc/statsd-exporter/conf.yaml
89-
image: docker.io/envoyproxy/ratelimit:3fb70258
89+
image: docker.io/envoyproxy/ratelimit:c8765e89
9090
imagePullPolicy: IfNotPresent
9191
livenessProbe:
9292
failureThreshold: 3

internal/infrastructure/kubernetes/ratelimit/testdata/deployments/merge-labels.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ spec:
8686
value: :19001
8787
- name: PROMETHEUS_MAPPER_YAML
8888
value: /etc/statsd-exporter/conf.yaml
89-
image: docker.io/envoyproxy/ratelimit:3fb70258
89+
image: docker.io/envoyproxy/ratelimit:c8765e89
9090
imagePullPolicy: IfNotPresent
9191
livenessProbe:
9292
failureThreshold: 3

0 commit comments

Comments
 (0)