-
Notifications
You must be signed in to change notification settings - Fork 87
Policy Reporter UI
Frank Jogeleit edited this page May 7, 2021
·
18 revisions
Policy Reporter UI is an additional application and communicate with Policy Reporter over the optional REST API. By installing the UI along with the Policy Reporter Helm Chart, the REST API will be automatically enabled.
helm repo add policy-reporter https://fjogeleit.github.io/policy-reporter
helm repo update
helm install policy-reporter policy-reporter/policy-reporter --set ui.enabled=true -n policy-reporter --create-namespace
Accessing via Port Forward
kubectl port-forward service/policy-reporter-ui 8082:8080 -n policy-reporter
Open http://localhost:8082/ in your browser.
The Kyverno Plugin extend the Policy Reporter UI with a Kyverno specific Dashboard. It provides information about your current policies and related validation results.
helm install policy-reporter policy-reporter/policy-reporter --set kyvernoPlugin.enabled=true --set ui.enabled=true --set ui.plugins.kyverno=true -n policy-reporter --create-namespace
Accessing via Port Forward
kubectl port-forward service/policy-reporter-ui 8082:8080 -n policy-reporter
Open http://localhost:8082/ in your browser.
The UI Subchart provides its own values.yaml
with various possible customization options.