Helm installation

grafana-operator

grafana-operator for Kubernetes to manage Grafana instances and grafana resources.

Version: 0.1.3 Type: application AppVersion: v5.8.1

Installation

This is a OCI helm chart, helm started support OCI in version 3.8.0.

helm upgrade -i grafana-operator oci://ghcr.io/grafana/helm-charts/grafana-operator --version v5.8.1

Sadly helm OCI charts currently don’t support searching for available versions of a helm oci registry.

Upgrading

Helm does not provide functionality to update custom resource definitions. This can result in the operator misbehaving when a release contains updates to the custom resource definitions. To avoid issues due to outdated or missing definitions, run the following command before updating an existing installation:

kubectl apply --server-side --force-conflicts -f https://github.com/grafana/grafana-operator/releases/download/v5.8.1/crds.yaml

The --server-side and --force-conflict flags are required to avoid running into issues with the kubectl.kubernetes.io/last-applied-configuration annotation. By using server side apply, this annotation is not considered. --force-conflict allows kubectl to modify fields previously managed by helm.

Development

For general and helm specific development instructions please read the CONTRIBUTING.md

Out of scope

The chart won’t support any configuration of grafana instances or similar. It’s only meant to be used to install the grafana-operator. Deployments of grafana instances using the CRs is supposed to be done outside of the chart.

Currently the plan is not to support networkpolicy. The operators support os diverse configuration that you have to support all options. It’s easier to just manage this configuration outside of the operator.

Values

KeyTypeDefaultDescription
additionalLabelsobject{}additional labels to add to all resources
affinityobject{}pod affinity
envlist[]Additional environment variables
fullnameOverridestring""Overrides the fully qualified app name.
image.pullPolicystring"IfNotPresent"The image pull policy to use in grafana operator container
image.repositorystring"ghcr.io/grafana/grafana-operator"grafana operator image repository
image.tagstring""Overrides the image tag whose default is the chart appVersion.
imagePullSecretslist[]image pull secrets
isOpenShiftboolfalseDetermines if the target cluster is OpenShift. Additional rbac permissions for routes will be added on OpenShift
leaderElectboolfalseIf you want to run multiple replicas of the grafana-operator, this is not recommended.
metricsService.metricsPortint9090metrics service port
metricsService.typestring"ClusterIP"metrics service type
nameOverridestring""Overrides the name of the chart.
namespaceOverridestring""Overrides the namespace name.
namespaceScopeboolfalseIf the operator should run in namespace-scope or not, if true the operator will only be able to manage instances in the same namespace
nodeSelectorobject{}pod node selector
podAnnotationsobject{}pod annotations
podSecurityContextobject{}pod security context
priorityClassNamestring""pod priority class name
resourcesobject{}grafana operator container resources
securityContextobject{"capabilities":{"drop":["ALL"]},"readOnlyRootFilesystem":true,"runAsNonRoot":true}grafana operator container security context
serviceAccount.annotationsobject{}Annotations to add to the service account
serviceAccount.createbooltrueSpecifies whether a service account should be created
serviceAccount.namestring""The name of the service account to use. If not set and create is true, a name is generated using the fullname template
serviceMonitorobject{"additionalLabels":{},"enabled":false,"interval":"1m","metricRelabelings":[],"relabelings":[],"scrapeTimeout":"10s","targetLabels":[],"telemetryPath":"/metrics"}Enable this to use with Prometheus Operator
serviceMonitor.additionalLabelsobject{}Set of labels to transfer from the Kubernetes Service onto the target
serviceMonitor.enabledboolfalseWhen set true then use a ServiceMonitor to configure scraping
serviceMonitor.intervalstring"1m"Set how frequently Prometheus should scrape
serviceMonitor.metricRelabelingslist[]MetricRelabelConfigs to apply to samples before ingestion
serviceMonitor.relabelingslist[]Set relabel_configs as per https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config
serviceMonitor.scrapeTimeoutstring"10s"Set timeout for scrape
serviceMonitor.targetLabelslist[]Set of labels to transfer from the Kubernetes Service onto the target
serviceMonitor.telemetryPathstring"/metrics"Set path to metrics path
tolerationslist[]pod tolerations
watchNamespaceSelectorstring""Sets the WATCH_NAMESPACE_SELECTOR environment variable, it defines which namespaces the operator should be listening for based on label and key value pair added on namespace kind. By default it’s all namespaces.
watchNamespacesstring""Sets the WATCH_NAMESPACE environment variable, it defines which namespaces the operator should be listening for. By default it’s all namespaces, if you only want to listen for the same namespace as the operator is deployed to look at namespaceScope.