Skip to content

Commit 9b68c47

Browse files
authored
cut v2.3.1 release (#2400)
* cut v2.3.1 release * update base image
1 parent c3c20c4 commit 9b68c47

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN --mount=type=bind,target=. \
2525
CGO_LDFLAGS="-Wl,-z,relro,-z,now" \
2626
go build -buildmode=pie -tags 'osusergo,netgo,static_build' -ldflags="-s -w -linkmode=external -extldflags '-static-pie' -X ${VERSION_PKG}.GitVersion=${GIT_VERSION} -X ${VERSION_PKG}.GitCommit=${GIT_COMMIT} -X ${VERSION_PKG}.BuildDate=${BUILD_DATE}" -mod=readonly -a -o /out/controller main.go
2727

28-
FROM public.ecr.aws/eks-distro-build-tooling/eks-distro-minimal-base-nonroot:2021-08-22-1629654770 as bin-unix
28+
FROM public.ecr.aws/eks-distro-build-tooling/eks-distro-minimal-base-nonroot:2021-12-01-1638322424 as bin-unix
2929

3030
COPY --from=build /out/controller /controller
3131
ENTRYPOINT ["/controller"]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
MAKEFILE_PATH = $(dir $(realpath -s $(firstword $(MAKEFILE_LIST))))
33

44
# Image URL to use all building/pushing image targets
5-
IMG ?= amazon/aws-alb-ingress-controller:v2.3.0
5+
IMG ?= amazon/aws-alb-ingress-controller:v2.3.1
66

77
CRD_OPTIONS ?= "crd:crdVersions=v1"
88

config/controller/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ kind: Kustomization
99
images:
1010
- name: controller
1111
newName: amazon/aws-alb-ingress-controller
12-
newTag: v2.3.0
12+
newTag: v2.3.1

docs/deploy/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The IAM permissions can either be setup via IAM roles for ServiceAccount or can
7474
7575
1. Download IAM policy for the AWS Load Balancer Controller
7676
```
77-
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.3.0/docs/install/iam_policy.json
77+
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.3.1/docs/install/iam_policy.json
7878
```
7979
8080
1. Create an IAM policy called AWSLoadBalancerControllerIAMPolicy
@@ -99,7 +99,7 @@ The IAM permissions can either be setup via IAM roles for ServiceAccount or can
9999
#### Setup IAM manually
100100
If not setting up IAM for ServiceAccount, apply the IAM policies from the following URL at minimum.
101101
```
102-
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.3.0/docs/install/iam_policy.json
102+
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.3.1/docs/install/iam_policy.json
103103
```
104104
105105
##### IAM permission subset for those who use *TargetGroupBinding* only and don't plan to use the AWS Load Balancer Controller to manage security group rules:
@@ -173,7 +173,7 @@ curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-lo
173173
### Apply YAML
174174
1. Download spec for load balancer controller.
175175
```
176-
wget https://github.com/kubernetes-sigs/aws-load-balancer-controller/releases/download/v2.3.0/v2_3_0_full.yaml
176+
wget https://github.com/kubernetes-sigs/aws-load-balancer-controller/releases/download/v2.3.1/v2_3_1_full.yaml
177177
```
178178
1. Edit the saved yaml file, go to the Deployment spec, and set the controller --cluster-name arg value to your EKS cluster name
179179
```
@@ -197,7 +197,7 @@ curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-lo
197197
```
198198
1. Apply the yaml file
199199
```
200-
kubectl apply -f v2_3_0_full.yaml
200+
kubectl apply -f v2_3_1_full.yaml
201201
```
202202
203203

helm/aws-load-balancer-controller/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: aws-load-balancer-controller
33
description: AWS Load Balancer Controller Helm chart for Kubernetes
44
version: 1.3.3
5-
appVersion: v2.3.0
5+
appVersion: v2.3.1
66
home: https://github.com/aws/eks-charts
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

helm/aws-load-balancer-controller/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replicaCount: 2
66

77
image:
88
repository: 602401143452.dkr.ecr.us-west-2.amazonaws.com/amazon/aws-load-balancer-controller
9-
tag: v2.3.0
9+
tag: v2.3.1
1010
pullPolicy: IfNotPresent
1111

1212
imagePullSecrets: []

0 commit comments

Comments
 (0)