diff --git a/charts/policy-reporter/Chart.yaml b/charts/policy-reporter/Chart.yaml index 3ef83e92..b8ec3bd6 100644 --- a/charts/policy-reporter/Chart.yaml +++ b/charts/policy-reporter/Chart.yaml @@ -5,8 +5,8 @@ description: | It creates Prometheus Metrics and can send rule validation events to different targets like Loki, Elasticsearch, Slack or Discord type: application -version: 3.0.0-rc.10 -appVersion: 3.0.0-rc.6 +version: 3.0.0-rc.11 +appVersion: 3.0.0-rc.7 icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png home: https://kyverno.github.io/policy-reporter diff --git a/charts/policy-reporter/README.md b/charts/policy-reporter/README.md index 550aeec0..c5d95937 100644 --- a/charts/policy-reporter/README.md +++ b/charts/policy-reporter/README.md @@ -3,7 +3,7 @@ Policy Reporter watches for PolicyReport Resources. It creates Prometheus Metrics and can send rule validation events to different targets like Loki, Elasticsearch, Slack or Discord -![Version: 3.0.0-rc.10](https://img.shields.io/badge/Version-3.0.0--rc.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0-rc.6](https://img.shields.io/badge/AppVersion-3.0.0--rc.6-informational?style=flat-square) +![Version: 3.0.0-rc.11](https://img.shields.io/badge/Version-3.0.0--rc.11-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0-rc.7](https://img.shields.io/badge/AppVersion-3.0.0--rc.7-informational?style=flat-square) ## Documentation @@ -158,6 +158,7 @@ Open `http://localhost:8082/` in your browser. | target.elasticsearch.host | string | `""` | Host address | | target.elasticsearch.certificate | string | `""` | Server Certificate file path Can be added under extraVolumes | | target.elasticsearch.skipTLS | bool | `false` | Skip TLS verification | +| target.elasticsearch.headers | object | `{}` | Additional HTTP Headers | | target.elasticsearch.index | string | `"policy-reporter"` | Elasticsearch index (default: policy-reporter) | | target.elasticsearch.rotation | string | `"daily"` | Elasticsearch index rotation and index suffix Possible values: daily, monthly, annually, none (default: daily) | | target.elasticsearch.typelessApi | bool | `false` | Enables Elasticsearch typless API https://www.elastic.co/blog/moving-from-types-to-typeless-apis-in-elasticsearch-7-0 keeping as false for retrocompatibility. | diff --git a/charts/policy-reporter/values.yaml b/charts/policy-reporter/values.yaml index 9d5f9702..482f1d55 100644 --- a/charts/policy-reporter/values.yaml +++ b/charts/policy-reporter/values.yaml @@ -379,6 +379,8 @@ target: certificate: "" # -- Skip TLS verification skipTLS: false + # -- Additional HTTP Headers + headers: {} # -- Elasticsearch index (default: policy-reporter) index: "policy-reporter" # -- Elasticsearch index rotation and index suffix @@ -928,7 +930,10 @@ ui: # list: [] # # -- selector for displayed namespaces # selector: - # team: team-a + # team: team-a # equal + # workload: * # label exists + # infra: !* # label does not exist + # env: dev,test # label value is one of [dev, test] # sources: # # -- list of displayed sources # list: []