Skip to content

Commit

Permalink
Merge pull request #3503 from mikejoh/add-f5-virtualserver-source-rbac
Browse files Browse the repository at this point in the history
Add RBAC to be able to handle F5 VirtualServer source
  • Loading branch information
k8s-ci-robot authored Mar 30, 2023
2 parents e4792ae + d2932e3 commit 949961a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions charts/external-dns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### All Changes
- Added RBAC for Gateway-API resources to clusterrole [#3499](https://github.com/kubernetes-sigs/external-dns/pull/3499). [@michaelvl](https://github.com/MichaelVL)

## [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
Expand Down
5 changes: 5 additions & 0 deletions charts/external-dns/templates/clusterrole.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,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 }}
Expand Down

0 comments on commit 949961a

Please sign in to comment.