Skip to content

Commit f6270e5

Browse files
authored
Updated Envoy image version to v1.29.12.1 (#793)
1 parent ca4f133 commit f6270e5

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ IMAGE ?= $(REPO):$(VERSION)
99
PREVIEW=false
1010
ENABLE_BACKEND_GROUPS?=false
1111
WAIT_PROXY_READY=false
12-
SIDECAR_IMAGE_TAG=v1.29.12.0-prod
12+
SIDECAR_IMAGE_TAG=v1.29.12.1-prod
1313

1414
# Produce CRDs that work back to Kubernetes 1.11 (no version conversion)
1515
CRD_OPTIONS ?= "crd:trivialVersions=true,crdVersions=v1"

config/helm/appmesh-controller/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ image:
1818
sidecar:
1919
image:
2020
repository: 840364872350.dkr.ecr.us-west-2.amazonaws.com/aws-appmesh-envoy
21-
tag: v1.29.12.0-prod
21+
tag: v1.29.12.1-prod
2222
# sidecar.logLevel: Envoy log level can be info, warn, error or debug
2323
logLevel: info
2424
envoyAdminAccessPort: 9901

config/helm/appmesh-controller/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ image:
1919
sidecar:
2020
image:
2121
repository: 840364872350.dkr.ecr.us-west-2.amazonaws.com/aws-appmesh-envoy
22-
tag: v1.29.12.0-prod
22+
tag: v1.29.12.1-prod
2323
# sidecar.logLevel: Envoy log level can be info, warn, error or debug
2424
logLevel: info
2525
envoyAdminAccessPort: 9901

pkg/inject/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ func (cfg *Config) BindFlags(fs *pflag.FlagSet) {
154154
fs.BoolVar(&cfg.EnableBackendGroups, flagEnableBackendGroups, false, "If enabled, experimental Backend Groups feature will be enabled.")
155155
fs.StringVar(&cfg.SidecarImageRepository, flagSidecarImageRepository, "public.ecr.aws/appmesh/aws-appmesh-envoy",
156156
"Envoy sidecar container image repository.")
157-
fs.StringVar(&cfg.SidecarImageTag, flagSidecarImageTag, "v1.29.12.0-prod", "Envoy sidecar container image tag.")
157+
fs.StringVar(&cfg.SidecarImageTag, flagSidecarImageTag, "v1.29.12.1-prod", "Envoy sidecar container image tag.")
158158
fs.StringVar(&cfg.SidecarCpuRequests, flagSidecarCpuRequests, "10m",
159159
"Sidecar CPU resources requests.")
160160
fs.StringVar(&cfg.SidecarMemoryRequests, flagSidecarMemoryRequests, "32Mi",

pkg/inject/inject_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func getConfig(fp func(Config) Config) Config {
2424
LogLevel: "debug",
2525
Preview: false,
2626
SidecarImageRepository: "public.ecr.aws/appmesh/aws-appmesh-envoy",
27-
SidecarImageTag: "v1.29.12.0-prod",
27+
SidecarImageTag: "v1.29.12.1-prod",
2828
InitImage: "840364872350.dkr.ecr.us-west-2.amazonaws.com/aws-appmesh-proxy-route-manager:v7-prod",
2929
SidecarMemoryRequests: "32Mi",
3030
SidecarCpuRequests: "10m",

scripts/test-with-kind.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ CONTROLLER_TAG="local"
8383
IMAGE_HOST="840364872350.dkr.ecr.us-west-2.amazonaws.com"
8484

8585
ENVOY_IMAGE="$IMAGE_HOST/aws-appmesh-envoy"
86-
ENVOY_LATEST_TAG="v1.29.12.0-prod"
86+
ENVOY_LATEST_TAG="v1.29.12.1-prod"
8787
ENVOY_1_22_TAG="v1.22.2.0-prod"
8888

8989
PROXY_ROUTE_IMAGE="$IMAGE_HOST/aws-appmesh-proxy-route-manager"

0 commit comments

Comments
 (0)