|
8 | 8 | # -- the kosli reporter image pull policy |
9 | 9 | pullPolicy: IfNotPresent |
10 | 10 | # -- the kosli reporter image tag, overrides the image tag whose default is the chart appVersion. |
11 | | - tag: "v2.11.17" |
| 11 | + tag: "v2.11.27" |
12 | 12 |
|
13 | 13 | # -- overrides the name used for the created k8s resources. If `fullnameOverride` is provided, it has higher precedence than this one |
14 | 14 | nameOverride: "" |
@@ -44,15 +44,29 @@ reporterConfig: |
44 | 44 | # -- the name of Kosli environment that the k8s cluster/namespace correlates to |
45 | 45 | kosliEnvironmentName: "" |
46 | 46 | # -- the namespaces to scan and report. |
| 47 | + # Cannot be combined with excludeNamespaces or excludeNamespacesRegex. |
47 | 48 | # It is a comma separated list of namespace names. |
48 | 49 | # leave this and namespacesRegex unset if you want to report what is running in the entire cluster |
49 | 50 | namespaces: "" |
50 | 51 | # -- the namespaces Regex patterns to scan and report. |
51 | 52 | # Does not have effect if namespaces is set. |
52 | 53 | # Requires cluster-wide permissions. |
| 54 | + # Cannot be combined with excludeNamespaces or excludeNamespacesRegex. |
53 | 55 | # It is a comma separated list of namespace regex patterns. |
54 | 56 | # leave this and namespaces unset if you want to report what is running in the entire cluster |
55 | 57 | namespacesRegex: "" |
| 58 | + # -- the namespaces to exclude from scanning and reporting. |
| 59 | + # Cannot be combined with namespaces or namespacesRegex. |
| 60 | + # It is a comma separated list of namespace names. |
| 61 | + # leave this and excludeNamespacesRegex unset if you want to report what is running in the entire cluster |
| 62 | + excludeNamespaces: "" |
| 63 | + # -- the namespaces Regex patterns to exclude from scanning and reporting. |
| 64 | + # Does not have effect if excludeNamespaces is set. |
| 65 | + # Cannot be combined with namespaces or namespacesRegex. |
| 66 | + # Requires cluster-wide permissions. |
| 67 | + # It is a comma separated list of namespace regex patterns. |
| 68 | + # leave this and excludeNamespaces unset if you want to report what is running in the entire cluster |
| 69 | + excludeNamespacesRegex: "" |
56 | 70 | # -- whether the dry run mode is enabled or not. In dry run mode, the reporter logs the reports to stdout and does not send them to kosli. |
57 | 71 | dryRun: false |
58 | 72 | # -- the http proxy url |
|
0 commit comments