diff --git a/content/01. guide/helm-chart-core.md b/content/01. guide/helm-chart-core.md index ae577ce..f6c18c4 100644 --- a/content/01. guide/helm-chart-core.md +++ b/content/01. guide/helm-chart-core.md @@ -573,6 +573,8 @@ By default, the Policy Reporter UI processes only the Policy Reporter REST API r The APIs must be accessible for Policy Reporter UI, currently only HTTP Basic authentication is supported. Make sure that you make your APIs available only internally. +To activate the REST-API of your external installations of Policy Reporter, you must set `rest.enabled` to `true` in the respective configurations. + You can use the the `ui.clusterName` configuration to set the name of the default Cluster API, default is `Default`. ```yaml [values.yaml] @@ -590,6 +592,13 @@ ui: secretRef: auth-secret # all configuration can also provided as existing secret with the related key/value pairs, except the cluster name. ``` +#### External Cluster configuration + +```yaml [values.yaml] +rest: + enabled: true +``` + ### Kyverno Plugin integration