File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed
charts/victoria-metrics-agent Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
## Next release
2
2
3
- - TODO
3
+ - add ` .Values.rbac.extraRules ` to allow setting extra Role/ClusterRole rules
4
4
5
5
## 0.25.5
6
6
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
type : application
3
3
name : victoria-metrics-agent
4
4
description : VictoriaMetrics Agent - collects metrics from various sources and stores them to VictoriaMetrics
5
- version : 0.25.5
5
+ version : 0.25.6
6
6
appVersion : v1.125.1
7
7
sources :
8
8
- https://github.com/VictoriaMetrics/helm-charts
Original file line number Diff line number Diff line change 56
56
resources :
57
57
- ingresses
58
58
verbs : ["get", "list", "watch"]
59
+ {{- with .Values.rbac.extraRules }}
60
+ {{ toYaml . }}
61
+ {{- end }}
59
62
{{- if not $namespaced }}
60
63
- apiGroups : [""]
61
64
resources :
Original file line number Diff line number Diff line change 98
98
# -- If true and `rbac.enabled`, will deploy a Role/RoleBinding instead of a ClusterRole/ClusterRoleBinding
99
99
namespaced : false
100
100
101
+ # -- additional rules for a role
102
+ extraRules : []
103
+
101
104
serviceAccount :
102
105
# -- Specifies whether a service account should be created
103
106
create : true
You can’t perform that action at this time.
0 commit comments