k8s-reporter
This reference applies to chart version 2.2.0, which uses CLI version v2.12.0 by default (
image.tag).name and optional namespace selectors. Use one entry for a single environment, or multiple entries to report to different environments with different selectors.
Breaking change in v2.0.0
Version 2.0.0 removes the previous single-environment mode (kosliEnvironmentName and the namespaces / namespacesRegex / excludeNamespaces / excludeNamespacesRegex flags). You now configure one or more environments only via reporterConfig.environments. To report a single environment, use a list with one entry.
Prerequisites
- A Kubernetes cluster (minimum supported version is
v1.21) - Helm v3.0+
- If you want to report artifacts from just one namespace, you need to have permissions to
getandlistpods in that namespace. - If you want to report artifacts from multiple namespaces or entire cluster, you need to have cluster-wide permissions to
getandlistpods.
Installing the chart
To install this chart via the Helm chart repository:Install the helm chart
Configure reporterConfig.environments (required). Each entry has required One environment, specific namespaces:Multiple environments with different selectors:
name and optional namespaces, namespacesRegex, excludeNamespaces, excludeNamespacesRegex. Omit namespace fields for an entry to report the entire cluster to that environment.One environment, entire cluster:Chart source can be found at GitHub.
See all available configuration options below.
Upgrading the chart
If upgrading from v1.x to v2.0.0, migrate your values to the environments list format (see above). Then:Uninstalling chart
Running behind a TLS-inspecting proxy (corporate / custom CA bundle)
If your network sits behind a TLS-inspecting appliance (Zscaler, Netskope, Palo Alto, etc.) that re-signs HTTPS traffic with a corporate CA certificate, the reporter will fail withx509: certificate signed by unknown authority. To fix this, make the appliance’s CA bundle available to the reporter.
The chart offers two ways to do this. Use whichever fits your deployment flow.
Option 1 — customCA convenience wrapper (recommended for the common case)
Enable the wrapper in values.yaml
/etc/ssl/certs/kosli-custom-ca.crt using subPath. Go’s standard library on Linux loads CA roots in two independent passes — it reads the system bundle file (e.g. /etc/ssl/certs/ca-certificates.crt) and also scans /etc/ssl/certs/ for additional certificate files. The mounted file is picked up by the directory scan and added to the trust store alongside the system roots, so no SSL_CERT_FILE env var is needed.The wrapper deliberately does not set SSL_CERT_FILE. Setting it would replace the system bundle entirely with the customer’s file, breaking trust for any public CAs the bundle does not include.Option 2 — generic extraVolumes / extraVolumeMounts / extraEnvVars
Use these when you need a non-default mount path, a ConfigMap instead of a Secret, multiple volumes, or any other shape the wrapper does not cover:Pod Security Standards
Both options usesecret-backed volumes, which are permitted under the Pod Security Standards restricted profile. hostPath mounts are not permitted under that profile and should not be used here.
Cluster-wide alternative
If you already run cert-manager’s trust-manager to distribute a corporate CA bundle into a well-known ConfigMap in every namespace, pointextraVolumes / extraVolumeMounts at that ConfigMap instead of creating a per-namespace Secret.
Configurations
General
The cron schedule at which the reporter is triggered to report to Kosli.
Specifies how to treat concurrent executions of a Job that is created by this CronJob.
Specifies the number of failed finished jobs to keep.
Specifies the number of successful finished jobs to keep.
Overrides the name used for the created k8s resources. If
fullnameOverride is provided, it has higher precedence than this one.Overrides the fullname used for the created k8s resources. It has higher precedence than
nameOverride.Any custom annotations to be added to the cronjob.
Custom labels to add to pods.
Image
The kosli reporter image repository.
The kosli reporter image tag, overrides the image tag whose default is the chart appVersion.
The kosli reporter image pull policy.
Reporter configuration
The name of the Kosli org.
List of Kosli environments to report to. Each entry has required
name and optional namespace selectors. Use one entry to report a single environment; use multiple entries to report to multiple environments with different selectors. Per entry: name (required), namespaces, namespacesRegex, excludeNamespaces, excludeNamespacesRegex (optional). Leave namespace fields unset for an entry to report the entire cluster to that environment.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.
The http proxy url.
The security context for the reporter cronjob. Set to null or
{} to disable security context entirely (not recommended). For OpenShift, you can omit runAsUser to let OpenShift assign the UID.Default:Whether to allow privilege escalation.
Whether to run as non root.
The user id to run as. Omit this field for OpenShift environments to allow automatic UID assignment.
Kosli API token
The name of the secret containing the Kosli API token.
The name of the key in the secret data which contains the Kosli API token.
Environment variables
Map of plain environment variables to inject into the reporter container. For a single-tenant Kosli instance, set
KOSLI_HOST to https://<instance_name>.kosli.com.Additional environment variables to inject into the reporter container. List of name/value or name/valueFrom entries, rendered verbatim into the container env. Supports plain values and valueFrom (secretKeyRef / configMapKeyRef). Entries here are appended after the chart’s own env entries; on duplicate names the later entry wins.
Volumes
Additional Pod-level volumes to attach to the reporter pod. Rendered verbatim into the Pod spec alongside the chart’s own volumes. Use together with
extraVolumeMounts to mount Secrets, ConfigMaps, or other volumes into the container.Additional container-level volumeMounts for the reporter container. Rendered verbatim into the container spec alongside the chart’s own mounts.
Custom CA
Convenience wrapper for mounting a corporate / custom CA bundle. See the Running behind a TLS-inspecting proxy section for usage.Default:
Enable mounting a corporate/custom CA bundle into the trust store.
Name of an existing Secret in the same namespace containing the CA bundle.
Key within the Secret that holds the PEM-formatted CA certificate (single cert or multi-cert PEM bundle).
Resources
The cpu limit.
The memory limit.
The memory request.
Service account
Specifies whether a service account should be created.
Annotations to add to the service account.
The name of the service account to use. If not set and create is true, a name is generated using the fullname template.
Specifies whether to create a cluster-wide permissions for the service account or namespace-scoped permissions. Allowed values are:
cluster, namespace.Autogenerated from chart metadata using helm-docs v1.14.2