Skip to content

Commit 672488a

Browse files
authored
cut v2.2.1 release (#2105)
1 parent 27803e3 commit 672488a

File tree

10 files changed

+995
-10
lines changed

10 files changed

+995
-10
lines changed

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.2.0
5+
IMG ?= amazon/aws-alb-ingress-controller:v2.2.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.2.0
12+
newTag: v2.2.1

docs/deploy/configurations.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ Currently, you can set only 1 namespace to watch in this flag. See [this Kuberne
8686
|service-max-concurrent-reconciles | int | 3 | Maximum number of concurrently running reconcile loops for service |
8787
|sync-period | duration | 1h0m0s | Period at which the controller forces the repopulation of its local object stores|
8888
|targetgroupbinding-max-concurrent-reconciles | int | 3 | Maximum number of concurrently running reconcile loops for targetGroupBinding |
89+
|targetgroupbinding-max-exponential-backoff-delay | duration | 16m40s | Maximum duration of exponential backoff for targetGroupBinding reconcile failures |
8990
|watch-namespace | string | | Namespace the controller watches for updates to Kubernetes objects, If empty, all namespaces are watched. |
9091
|webhook-bind-port | int | 9443 | The TCP port the Webhook server binds to |
9192
|webhook-cert-dir | string | /tmp/k8s-webhook-server/serving-certs | The directory that contains the server key and certificate |

docs/deploy/installation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Kubernetes version requirements
44
* AWS Load Balancer Controller v2.0.0~v2.1.3 requires Kubernetes 1.15+
5-
* AWS Load Balancer Controller v2.2.0 requires Kubernetes 1.16+
5+
* AWS Load Balancer Controller v2.2.0+ requires Kubernetes 1.16+
66

77
!!!warning "Existing AWS ALB Ingress Controller users"
88
AWS ALB Ingress controller must be uninstalled before installing AWS Load Balancer controller.
@@ -34,7 +34,7 @@ The IAM permissions can either be setup via IAM roles for ServiceAccount or can
3434
3535
1. Download IAM policy for the AWS Load Balancer Controller
3636
```
37-
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.2.0/docs/install/iam_policy.json
37+
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.2.1/docs/install/iam_policy.json
3838
```
3939
4040
1. Create an IAM policy called AWSLoadBalancerControllerIAMPolicy
@@ -58,7 +58,7 @@ The IAM permissions can either be setup via IAM roles for ServiceAccount or can
5858
#### Setup IAM manually
5959
If not setting up IAM for ServiceAccount, apply the IAM policies from the following URL at minimum.
6060
```
61-
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.2.0/docs/install/iam_policy.json
61+
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.2.1/docs/install/iam_policy.json
6262
```
6363
## Add Controller to Cluster
6464
@@ -109,7 +109,7 @@ curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-lo
109109
### Apply YAML
110110
1. Download spec for load balancer controller.
111111
```
112-
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.2.0/docs/install/v2_2_0_full.yaml
112+
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.2.1/docs/install/v2_2_1_full.yaml
113113
```
114114
1. Edit the saved yaml file, go to the Deployment spec, and set the controller --cluster-name arg value to your EKS cluster name
115115
```
@@ -133,7 +133,7 @@ curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-lo
133133
```
134134
1. Apply the yaml file
135135
```
136-
kubectl apply -f v2_2_0_full.yaml
136+
kubectl apply -f v2_2_1_full.yaml
137137
```
138138
139139

0 commit comments

Comments
 (0)