File tree Expand file tree Collapse file tree 4 files changed +24
-3
lines changed Expand file tree Collapse file tree 4 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ function cleanup {
38
38
}
39
39
trap cleanup EXIT
40
40
41
- E2E_IMAGE=${E2E_IMAGE:- registry.k8s.io/ ingress-nginx/ e2e-test-runner: v20220819-ga98c63787 @ sha256: 608ef1c1e5783e4a0c4fe57d8f85aa30eb0a3d25e5b1492197e8a95382d5e09d }
41
+ E2E_IMAGE=${E2E_IMAGE:- registry.k8s.io/ ingress-nginx/ e2e-test-runner: v20220624-g3348cd71e @ sha256: 2a34e322b7ff89abdfa0b6202f903bf5618578b699ff609a3ddabac0aae239c8 }
42
42
43
43
DOCKER_OPTS=${DOCKER_OPTS:- }
44
44
DOCKER_IN_DOCKER_ENABLED=${DOCKER_IN_DOCKER_ENABLED:- }
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : ingress-nginx
3
3
# When the version is modified, make sure the artifacthub.io/changes list is updated
4
4
# Also update CHANGELOG.md
5
- version : 4.2.2
5
+ version : 4.2.3
6
6
appVersion : 1.3.0
7
7
home : https://github.com/kubernetes/ingress-nginx
8
8
description : Ingress controller for Kubernetes using NGINX as a reverse proxy and load balancer
@@ -27,3 +27,4 @@ annotations:
27
27
# https://artifacthub.io/packages/helm/ingress-nginx/ingress-nginx?modal=changelog
28
28
artifacthub.io/changes : |
29
29
- "[8896](https://github.com/kubernetes/ingress-nginx/pull/8896) updated to new images built today"
30
+ - "fix permissions about configmap"
Original file line number Diff line number Diff line change 2
2
3
3
[ ingress-nginx] ( https://github.com/kubernetes/ingress-nginx ) Ingress controller for Kubernetes using NGINX as a reverse proxy and load balancer
4
4
5
- ![ Version: 4.2.2 ] ( https://img.shields.io/badge/Version-4.2.2 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 1.3.0] ( https://img.shields.io/badge/AppVersion-1.3.0-informational?style=flat-square )
5
+ ![ Version: 4.2.3 ] ( https://img.shields.io/badge/Version-4.2.3 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 1.3.0] ( https://img.shields.io/badge/AppVersion-1.3.0-informational?style=flat-square )
6
6
7
7
To use, add ` ingressClassName: nginx ` spec field or the ` kubernetes.io/ingress.class: nginx ` annotation to your Ingress resources.
8
8
Original file line number Diff line number Diff line change @@ -58,6 +58,26 @@ rules:
58
58
- get
59
59
- list
60
60
- watch
61
+ # TODO(Jintao Zhang)
62
+ # Once we release a new version of the controller,
63
+ # we will be able to remove the configmap related permissions
64
+ # We have used the Lease API for selection
65
+ # ref: https://github.com/kubernetes/ingress-nginx/pull/8921
66
+ - apiGroups :
67
+ - " "
68
+ resources :
69
+ - configmaps
70
+ resourceNames :
71
+ - {{ .Values.controller.electionID }}
72
+ verbs :
73
+ - get
74
+ - update
75
+ - apiGroups :
76
+ - " "
77
+ resources :
78
+ - configmaps
79
+ verbs :
80
+ - create
61
81
- apiGroups :
62
82
- coordination.k8s.io
63
83
resources :
You can’t perform that action at this time.
0 commit comments