Skip to content

Commit 5db5d08

Browse files
committed
cut v1.1.5 release
1 parent 32ca4ad commit 5db5d08

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
all: container
1919

20-
TAG?=v1.1.4
20+
TAG?=v1.1.5
2121
PREFIX?=amazon/aws-alb-ingress-controller
2222
ARCH?=amd64
2323
OS?=linux

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# AWS ALB Ingress Controller
77

8-
**NOTE:** The current image version is `v1.1.4`. Please file any issues you find and note the version used.
8+
**NOTE:** The current image version is `v1.1.5`. Please file any issues you find and note the version used.
99

1010
The AWS ALB Ingress Controller satisfies Kubernetes [ingress resources](https://kubernetes.io/docs/user-guide/ingress) by provisioning [Application Load Balancers](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/introduction.html).
1111

docs/examples/alb-ingress-controller.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,5 @@ spec:
6666
#- name: AWS_SECRET_ACCESS_KEY
6767
# value: SECRETVALUE
6868
# Repository location of the ALB Ingress Controller.
69-
image: docker.io/amazon/aws-alb-ingress-controller:v1.1.4
69+
image: docker.io/amazon/aws-alb-ingress-controller:v1.1.5
7070
serviceAccountName: alb-ingress-controller

docs/examples/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ commonLabels:
33

44
imageTags:
55
- name: docker.io/amazon/aws-alb-ingress-controller
6-
newTag: v1.1.4
6+
newTag: v1.1.5
77

88
namespace: kube-system
99

docs/guide/controller/setup.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ More docs on [hub.helm.sh](https://hub.helm.sh/charts/incubator/aws-alb-ingress-
3232
### Kubectl
3333
1. Download sample ALB ingress controller manifest
3434
``` bash
35-
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.4/docs/examples/alb-ingress-controller.yaml
35+
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.5/docs/examples/alb-ingress-controller.yaml
3636
```
3737

3838
2. Configure the ALB ingress controller manifest
@@ -50,7 +50,7 @@ More docs on [hub.helm.sh](https://hub.helm.sh/charts/incubator/aws-alb-ingress-
5050
3. Deploy the RBAC roles manifest
5151

5252
```bash
53-
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.4/docs/examples/rbac-role.yaml
53+
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.5/docs/examples/rbac-role.yaml
5454
```
5555

5656
4. Deploy the ALB ingress controller manifest

docs/guide/external-dns/setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Adequate roles and policies must be configured in AWS and available to the node(
99
1. Download sample `external-dns` manifest
1010

1111
```bash
12-
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.4/docs/examples/external-dns.yaml
12+
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.5/docs/examples/external-dns.yaml
1313
```
1414

1515
2. Edit the `--domain-filter` flag to include your hosted zone(s)

docs/guide/walkthrough/echoserver.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ In this walkthrough, you'll
4343
1. Download the example alb-ingress-manifest locally.
4444

4545
```bash
46-
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.4/docs/examples/alb-ingress-controller.yaml
47-
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.4/docs/examples/rbac-role.yaml
46+
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.5/docs/examples/alb-ingress-controller.yaml
47+
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.5/docs/examples/rbac-role.yaml
4848
```
4949

5050
1. Edit the manifest and set the following parameters and environment variables.
@@ -100,9 +100,9 @@ In this walkthrough, you'll
100100
1. Deploy all the echoserver resources (namespace, service, deployment)
101101

102102
```bash
103-
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.4/docs/examples/echoservice/echoserver-namespace.yaml &&\
104-
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.4/docs/examples/echoservice/echoserver-service.yaml &&\
105-
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.4/docs/examples/echoservice/echoserver-deployment.yaml
103+
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.5/docs/examples/echoservice/echoserver-namespace.yaml &&\
104+
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.5/docs/examples/echoservice/echoserver-service.yaml &&\
105+
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.5/docs/examples/echoservice/echoserver-deployment.yaml
106106
```
107107

108108
1. List all the resources to ensure they were created.
@@ -126,7 +126,7 @@ In this walkthrough, you'll
126126
1. Download the echoserver ingress manifest locally.
127127

128128
```bash
129-
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.4/docs/examples/echoservice/echoserver-ingress.yaml
129+
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.5/docs/examples/echoservice/echoserver-ingress.yaml
130130
```
131131

132132
1. Configure the subnets, either by add annotation to the ingress or add tags to subnets.
@@ -235,7 +235,7 @@ In this walkthrough, you'll
235235
1. Download external-dns to manage Route 53.
236236

237237
```bash
238-
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.4/docs/examples/external-dns.yaml
238+
wget https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.5/docs/examples/external-dns.yaml
239239
```
240240

241241
1. Edit the `--domain-filter` flag to include your hosted zone(s)
@@ -306,7 +306,7 @@ In this walkthrough, you'll
306306
follow below steps if you want to use kube2iam to provide the AWS credentials
307307

308308
1. configure the proper policy
309-
The policy to be used can be fetched from https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.4/docs/examples/iam-policy.json
309+
The policy to be used can be fetched from https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/v1.1.5/docs/examples/iam-policy.json
310310

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

0 commit comments

Comments
 (0)