Skip to content

Commit 9aec5a0

Browse files
authored
cut v2.1.0 release (#1697)
1 parent f86d5d7 commit 9aec5a0

File tree

6 files changed

+593
-2
lines changed

6 files changed

+593
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# Image URL to use all building/pushing image targets
3-
IMG ?= amazon/aws-alb-ingress-controller:v2.0.1
3+
IMG ?= amazon/aws-alb-ingress-controller:v2.1.0
44

55
CRD_OPTIONS ?= "crd:trivialVersions=false,crdVersions=v1beta1"
66

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.0.0
12+
newTag: v2.1.0

config/rbac/role.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,14 @@ rules:
113113
verbs:
114114
- patch
115115
- update
116+
- apiGroups:
117+
- networking.k8s.io
118+
resources:
119+
- ingressclasses
120+
verbs:
121+
- get
122+
- list
123+
- watch
116124
- apiGroups:
117125
- networking.k8s.io
118126
resources:

controllers/ingress/group_controller.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ type groupReconciler struct {
8989

9090
// +kubebuilder:rbac:groups=networking.k8s.io,resources=ingresses,verbs=get;list;watch;update;patch
9191
// +kubebuilder:rbac:groups=networking.k8s.io,resources=ingresses/status,verbs=update;patch
92+
// +kubebuilder:rbac:groups=networking.k8s.io,resources=ingressclasses,verbs=get;list;watch
9293
// +kubebuilder:rbac:groups=extensions,resources=ingresses,verbs=get;list;watch;update;patch
9394
// +kubebuilder:rbac:groups=extensions,resources=ingresses/status,verbs=update;patch
9495
// +kubebuilder:rbac:groups="",resources=services,verbs=get;list;watch;update;patch

docs/guide/controller/configurations.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ spec:
6565
|aws-region | string | [instance metadata](#instance-metadata) | AWS Region for the kubernetes cluster |
6666
|aws-vpc-id | string | [instance metadata](#instance-metadata) | AWS VPC ID for the Kubernetes cluster |
6767
|cluster-name | string | | Kubernetes cluster name|
68+
|default-tags | stringMap | | Default AWS Tags that will be applied to all AWS resources managed by this controller |
6869
|enable-leader-election | boolean | true | Enable leader election for controller manager. Enabling this will ensure there is only one active controller manager. |
6970
|enable-pod-readiness-gate-inject | boolean | true | If enabled, targetHealth readiness gate will get injected to the pod spec for the matching endpoint pods. |
7071
|enable-shield | boolean | true | Enable Shield addon for ALB |

0 commit comments

Comments
 (0)