Skip to content

Commit ab69d95

Browse files
authored
Merge pull request #4082 from zac-nixon/main
cut v2.12.0 release
2 parents 1e26bff + 426fd16 commit ab69d95

File tree

9 files changed

+22
-22
lines changed

9 files changed

+22
-22
lines changed

Makefile

+2-2
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 ?= public.ecr.aws/eks/aws-load-balancer-controller:v2.11.0
5+
IMG ?= public.ecr.aws/eks/aws-load-balancer-controller:v2.12.0
66
# Image URL to use for builder stage in Docker build
77
GOLANG_VERSION ?= $(shell cat .go-version)
88
BUILD_IMAGE ?= public.ecr.aws/docker/library/golang:$(GOLANG_VERSION)
@@ -169,7 +169,7 @@ docs-preview: docs-dependencies
169169

170170
# publish the versioned docs using mkdocs mike util
171171
docs-publish: docs-dependencies
172-
pipenv run mike deploy v2.11 latest -p --update-aliases
172+
pipenv run mike deploy v2.12 latest -p --update-aliases
173173

174174
# install dependencies needed to preview and publish docs
175175
docs-dependencies:

config/controller/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ kind: Kustomization
99
images:
1010
- name: controller
1111
newName: public.ecr.aws/eks/aws-load-balancer-controller
12-
newTag: v2.11.0
12+
newTag: v2.12.0

docs/deploy/installation.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,15 @@ Example condition for cluster name resource tag:
9090
2. Download an IAM policy for the LBC using one of the following commands:<p>
9191
If your cluster is in a US Gov Cloud region:
9292
```
93-
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.11.0/docs/install/iam_policy_us-gov.json
93+
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.12.0/docs/install/iam_policy_us-gov.json
9494
```
9595
If your cluster is in a China region:
9696
```
97-
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.11.0/docs/install/iam_policy_cn.json
97+
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.12.0/docs/install/iam_policy_cn.json
9898
```
9999
If your cluster is in any other region:
100100
```
101-
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.11.0/docs/install/iam_policy.json
101+
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.12.0/docs/install/iam_policy.json
102102
```
103103
104104
3. Create an IAM policy named `AWSLoadBalancerControllerIAMPolicy`. If you downloaded a different policy, replace `iam-policy` with the name of the policy that you downloaded.
@@ -124,7 +124,7 @@ Example condition for cluster name resource tag:
124124
### Option B: Attach IAM policies to nodes
125125
If you're not setting up IAM roles for service accounts, apply the IAM policies from the following URL at a minimum. Please be aware of the possibility that the controller permissions may be assumed by other users in a pod after retrieving the node role credentials, so the best practice would be using IRSA instead of attaching IAM policy directly.
126126
```
127-
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.11.0/docs/install/iam_policy.json
127+
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.12.0/docs/install/iam_policy.json
128128
```
129129
130130
## Special IAM cases
@@ -264,7 +264,7 @@ We recommend using the Helm chart to install the controller. The chart supports
264264
### Apply YAML
265265
1. Download the spec for the LBC.
266266
```
267-
wget https://github.com/kubernetes-sigs/aws-load-balancer-controller/releases/download/v2.11.0/v2_11_0_full.yaml
267+
wget https://github.com/kubernetes-sigs/aws-load-balancer-controller/releases/download/v2.12.0/v2_12_0_full.yaml
268268
```
269269
2. Edit the saved yaml file, go to the Deployment spec, and set the controller `--cluster-name` arg value to your EKS cluster name
270270
```
@@ -288,15 +288,15 @@ We recommend using the Helm chart to install the controller. The chart supports
288288
```
289289
4. Apply the yaml file
290290
```
291-
kubectl apply -f v2_11_0_full.yaml
291+
kubectl apply -f v2_12_0_full.yaml
292292
```
293293
5. Optionally download the default ingressclass and ingressclass params
294294
```
295-
wget https://github.com/kubernetes-sigs/aws-load-balancer-controller/releases/download/v2.11.0/v2_11_0_ingclass.yaml
295+
wget https://github.com/kubernetes-sigs/aws-load-balancer-controller/releases/download/v2.12.0/v2_12_0_ingclass.yaml
296296
```
297297
6. Apply the ingressclass and params
298298
```
299-
kubectl apply -f v2_11_0_ingclass.yaml
299+
kubectl apply -f v2_12_0_ingclass.yaml
300300
```
301301
302302
## Create Update Strategy

docs/examples/echo_server.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ In this walkthrough, you'll
8787
1. Deploy all the echoserver resources (namespace, service, deployment)
8888

8989
```bash
90-
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.11.0/docs/examples/echoservice/echoserver-namespace.yaml &&\
91-
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.11.0/docs/examples/echoservice/echoserver-service.yaml &&\
92-
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.11.0/docs/examples/echoservice/echoserver-deployment.yaml
90+
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.12.0/docs/examples/echoservice/echoserver-namespace.yaml &&\
91+
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.12.0/docs/examples/echoservice/echoserver-service.yaml &&\
92+
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.12.0/docs/examples/echoservice/echoserver-deployment.yaml
9393
```
9494

9595
1. List all the resources to ensure they were created.
@@ -113,7 +113,7 @@ In this walkthrough, you'll
113113
1. Download the echoserver ingress manifest locally.
114114

115115
```bash
116-
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.11.0/docs/examples/echoservice/echoserver-ingress.yaml
116+
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.12.0/docs/examples/echoservice/echoserver-ingress.yaml
117117
```
118118

119119
1. Configure the subnets, either by add annotation to the ingress or add tags to subnets. This step is optional in lieu of auto-discovery.
@@ -300,7 +300,7 @@ You should get back a valid response.
300300
follow below steps if you want to use kube2iam to provide the AWS credentials
301301

302302
1. configure the proper policy
303-
The policy to be used can be fetched from https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.11.0/docs/install/iam_policy.json
303+
The policy to be used can be fetched from https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.12.0/docs/install/iam_policy.json
304304

305305
1. configure the proper role and create the trust relationship
306306
You have to find which role is associated with your K8S nodes. Once you found take note of the full arn:

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
22
name: aws-load-balancer-controller
33
description: AWS Load Balancer Controller Helm chart for Kubernetes
4-
version: 1.11.1
5-
appVersion: v2.11.0
4+
version: 1.12.0
5+
appVersion: v2.12.0
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/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replicaCount: 2
66

77
image:
88
repository: public.ecr.aws/eks/aws-load-balancer-controller
9-
tag: v2.11.0
9+
tag: v2.12.0
1010
pullPolicy: IfNotPresent
1111

1212
imagePullSecrets: []

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ revisionHistoryLimit: 10
88

99
image:
1010
repository: public.ecr.aws/eks/aws-load-balancer-controller
11-
tag: v2.11.0
11+
tag: v2.12.0
1212
pullPolicy: IfNotPresent
1313

1414
runtimeClassName: ""

version-stable.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.11.0
1+
2.12.0

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.11.0
1+
2.12.0

0 commit comments

Comments
 (0)