Skip to content

Commit df6da67

Browse files
authored
Merge pull request #124 from oskoperator/feature/alertmanagerconfig_rbac
feat(rbac): add missing rbac
2 parents e48d354 + 6e4bb69 commit df6da67

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

helm/osko/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.0.14
18+
version: 0.0.15
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "0.0.14"
24+
appVersion: "0.0.15"
2525

2626
home: https://github.com/oskoperator/osko
2727

helm/osko/templates/cluster-role.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,4 +219,30 @@ rules:
219219
- get
220220
- patch
221221
- update
222+
- apiGroups:
223+
- osko.dev
224+
resources:
225+
- alertmanagerconfigs
226+
verbs:
227+
- create
228+
- delete
229+
- get
230+
- list
231+
- patch
232+
- update
233+
- watch
234+
- apiGroups:
235+
- osko.dev
236+
resources:
237+
- alertmanagerconfigs/status
238+
verbs:
239+
- get
240+
- apiGroups:
241+
- ""
242+
resources:
243+
- secrets
244+
verbs:
245+
- get
246+
- list
247+
- watch
222248
{{- end }}

0 commit comments

Comments
 (0)