Add RBAC to support F5 VirtualServer source

Signed-off-by: Mikael Johansson <mik.json@gmail.com>
This commit is contained in:
Mikael Johansson 2023-03-27 12:40:16 +02:00
parent 197a07024a
commit d2932e3385
2 changed files with 11 additions and 0 deletions

View File

@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Deprecated
- Removed -->
## [v1.12.2] - UNRELEASED
### All Changes
- Add RBAC to be able to support the F5 VirtualServer `Source` ([#3503](https://github.com/kubernetes-sigs/external-dns/pull/3503)) [@mikejoh](https://github.com/mikejoh)
## [v1.12.1] - 2023-02-06
### All Changes

View File

@ -83,6 +83,11 @@ rules:
resources: ["routegroups/status"]
verbs: ["patch","update"]
{{- end }}
{{- if has "f5-virtualserver" .Values.sources }}
- apiGroups: ["cis.f5.com"]
resources: ["virtualservers"]
verbs: ["get","watch","list"]
{{- end }}
{{- with .Values.rbac.additionalPermissions }}
{{- toYaml . | nindent 2 }}
{{- end }}