File tree Expand file tree Collapse file tree 4 files changed +27
-3
lines changed
chart/k8soauth2-proxy-controller Expand file tree Collapse file tree 4 files changed +27
-3
lines changed Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ keywords:
13
13
name : k8soauth2-proxy-controller
14
14
sources :
15
15
- https://github.com/DoodleScheduling/k8soauth2-proxy-controller
16
- version : 0.2.4
16
+ version : 0.2.5
Original file line number Diff line number Diff line change 88
88
- --upstream=http://127.0.0.1:{{ .Values.metricsPort }}
89
89
- --logtostderr=true
90
90
- --v=0
91
- image : quay.io/brancz/kube-rbac-proxy:v0.14.0
91
+ image : {{ .Values.kubeRBACProxy.image }}
92
92
imagePullPolicy : IfNotPresent
93
93
name : kube-rbac-proxy
94
94
ports :
Original file line number Diff line number Diff line change @@ -16,6 +16,24 @@ rules:
16
16
---
17
17
apiVersion : rbac.authorization.k8s.io/v1
18
18
kind : ClusterRoleBinding
19
+ metadata :
20
+ name : {{ include "k8soauth2-proxy-controller.fullname" . }}-metrics
21
+ labels :
22
+ app.kubernetes.io/name : {{ include "k8soauth2-proxy-controller.name" . }}
23
+ app.kubernetes.io/instance : {{ .Release.Name }}
24
+ app.kubernetes.io/managed-by : {{ .Release.Service }}
25
+ helm.sh/chart : {{ include "k8soauth2-proxy-controller.chart" . }}
26
+ roleRef :
27
+ apiGroup : rbac.authorization.k8s.io
28
+ kind : ClusterRole
29
+ name : {{ include "k8soauth2-proxy-controller.fullname" . }}-metrics-reader
30
+ subjects :
31
+ - kind : ServiceAccount
32
+ name : {{ template "k8soauth2-proxy-controller.serviceAccountName" . }}
33
+ namespace : {{ .Release.Namespace }}
34
+ ---
35
+ apiVersion : rbac.authorization.k8s.io/v1
36
+ kind : ClusterRoleBinding
19
37
metadata :
20
38
name : {{ include "k8soauth2-proxy-controller.fullname" . }}-proxy
21
39
labels :
Original file line number Diff line number Diff line change @@ -132,13 +132,19 @@ prometheusRule:
132
132
133
133
kubeRBACProxy :
134
134
enabled : true
135
-
135
+ image : quay.io/brancz/kube-rbac-proxy:v0.14.2
136
136
securityContext :
137
137
allowPrivilegeEscalation : false
138
138
capabilities :
139
139
drop : ["all"]
140
140
readOnlyRootFilesystem : true
141
141
142
142
resources : {}
143
+ # limits:
144
+ # cpu: 500m
145
+ # memory: 128Mi
146
+ # requests:
147
+ # cpu: 5m
148
+ # memory: 64Mi
143
149
144
150
tolerations : []
You can’t perform that action at this time.
0 commit comments