Skip to content

Commit 39763b1

Browse files
authored
bump ratelimit version (#9757)
Signed-off-by: kkk777-7 <kota.kimura0725@gmail.com>
1 parent f0a856f commit 39763b1

56 files changed

Lines changed: 56 additions & 56 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const (
3434
// DefaultShutdownManagerImage is the default image used for the shutdown manager.
3535
DefaultShutdownManagerImage = "docker.io/envoyproxy/gateway-dev:latest"
3636
// DefaultRateLimitImage is the default image used by ratelimit.
37-
DefaultRateLimitImage = "docker.io/envoyproxy/ratelimit:4969da53"
37+
DefaultRateLimitImage = "docker.io/envoyproxy/ratelimit:17b1956c"
3838
// HTTPProtocol is the common-used http protocol.
3939
HTTPProtocol = "http"
4040
// GRPCProtocol is the common-used grpc protocol.

charts/gateway-helm/README.md

Lines changed: 1 addition & 1 deletion

charts/gateway-helm/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ The name of the Envoy Ratelimit image.
139139
{{- $repositoryTag := $imageParts._1 -}}
140140
{{- $repositoryParts := splitn ":" 2 $repositoryTag -}}
141141
{{- $repositoryName := $repositoryParts._0 -}}
142-
{{- $imageTag := default "4969da53" $repositoryParts._1 -}}
142+
{{- $imageTag := default "17b1956c" $repositoryParts._1 -}}
143143
{{- printf "%s/%s:%s" $registryName $repositoryName $imageTag -}}
144144
{{- end -}}
145145

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:4969da53"
22+
image: "docker.io/envoyproxy/ratelimit:17b1956c"
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:4969da53
12+
image: docker.io/envoyproxy/ratelimit:17b1956c
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:4969da53
87+
image: docker.io/envoyproxy/ratelimit:17b1956c
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:4969da53
77+
image: docker.io/envoyproxy/ratelimit:17b1956c
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:4969da53
102+
image: docker.io/envoyproxy/ratelimit:17b1956c
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:4969da53
102+
image: docker.io/envoyproxy/ratelimit:17b1956c
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:4969da53
89+
image: docker.io/envoyproxy/ratelimit:17b1956c
9090
imagePullPolicy: IfNotPresent
9191
livenessProbe:
9292
failureThreshold: 3

0 commit comments

Comments
 (0)