-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Frank Jogeleit <[email protected]>
- Loading branch information
Frank Jogeleit
committed
Feb 28, 2024
1 parent
00dcbff
commit a65e459
Showing
6 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Policy Reporter UI - Custom Boards | ||
|
||
CustomBoards allows you to configure additional dashboards with a custom subset of sources and namespaces, selected via a list and/or label selector | ||
|
||
## Example CustomBoard Config | ||
|
||
![Custom Boards](https://github.com/kyverno/policy-reporter/blob/3.x/docs/images/custom-boards/list.png) | ||
|
||
```yaml | ||
ui: | ||
customBoards: | ||
- name: System | ||
namespaces: | ||
list: | ||
- kube-system | ||
- kyverno | ||
- policy-reporter | ||
``` | ||
### CustomBoard with NamespaceSelector | ||
![Custom Boards](https://github.com/kyverno/policy-reporter/blob/3.x/docs/images/custom-boards/selector.png) | ||
```yaml | ||
ui: | ||
customBoards: | ||
- name: System | ||
namespaces: | ||
selector: | ||
group: system | ||
``` | ||
### CustomBoard with ClusterResources | ||
![Custom Boards](https://github.com/kyverno/policy-reporter/blob/3.x/docs/images/custom-boards/cluster.png) | ||
```yaml | ||
ui: | ||
customBoards: | ||
- name: System | ||
clusterScope: | ||
enabled: true | ||
namespaces: | ||
selector: | ||
group: system | ||
``` | ||
### CustomBoard with Source List | ||
![Custom Boards](https://github.com/kyverno/policy-reporter/blob/3.x/docs/images/custom-boards/source.png) | ||
```yaml | ||
ui: | ||
customBoards: | ||
- name: System | ||
clusterScope: | ||
enabled: true | ||
namespaces: | ||
selector: | ||
group: system | ||
sources: | ||
list: [kyverno] | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.