Skip to content

Commit 42d2638

Browse files
authored
cut v2.3.0 release (#2304)
1 parent 3161e16 commit 42d2638

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
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 ?= amazon/aws-alb-ingress-controller:v2.2.1
5+
IMG ?= amazon/aws-alb-ingress-controller:v2.3.0
66

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

@@ -101,7 +101,7 @@ docs-preview: docs-dependencies
101101

102102
# publish the versioned docs using mkdocs mike util
103103
docs-publish: docs-dependencies
104-
pipenv run mike deploy v2.2 latest -p --update-aliases
104+
pipenv run mike deploy v2.3 latest -p --update-aliases
105105

106106
# install dependencies needed to preview and publish docs
107107
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: amazon/aws-alb-ingress-controller
12-
newTag: v2.2.1
12+
newTag: v2.3.0

config/default/kustomization.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ vars:
4141
objref:
4242
kind: Certificate
4343
group: cert-manager.io
44-
version: v1alpha2
44+
version: v1
4545
name: serving-cert # this name should match the one in certificate.yaml
4646
fieldref:
4747
fieldpath: metadata.namespace
4848
- name: CERTIFICATE_NAME
4949
objref:
5050
kind: Certificate
5151
group: cert-manager.io
52-
version: v1alpha2
52+
version: v1
5353
name: serving-cert # this name should match the one in certificate.yaml
5454
- name: SERVICE_NAMESPACE # namespace of the service
5555
objref:

docs/deploy/installation.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ The IAM permissions can either be setup via IAM roles for ServiceAccount or can
7575
7676
1. Download IAM policy for the AWS Load Balancer Controller
7777
```
78-
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.2.1/docs/install/iam_policy.json
78+
curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.3.0/docs/install/iam_policy.json
7979
```
8080
8181
1. Create an IAM policy called AWSLoadBalancerControllerIAMPolicy
@@ -150,7 +150,7 @@ curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-lo
150150
### Apply YAML
151151
1. Download spec for load balancer controller.
152152
```
153-
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-load-balancer-controller/v2.2.1/docs/install/v2_2_1_full.yaml
153+
wget https://github.com/kubernetes-sigs/aws-load-balancer-controller/releases/download/v2.3.0/v2_3_0_full.yaml
154154
```
155155
1. Edit the saved yaml file, go to the Deployment spec, and set the controller --cluster-name arg value to your EKS cluster name
156156
```
@@ -174,7 +174,7 @@ curl -o iam-policy.json https://raw.githubusercontent.com/kubernetes-sigs/aws-lo
174174
```
175175
1. Apply the yaml file
176176
```
177-
kubectl apply -f v2_2_1_full.yaml
177+
kubectl apply -f v2_3_0_full.yaml
178178
```
179179
180180

0 commit comments

Comments
 (0)