3df8ac2779
Adds the grafana-operator (grafana.integreatly.org CRDs + controller) so Grafana and its dashboards/datasources can be managed declaratively as CRs in a follow-up PR. Sits in the platform project like the other operators (vm-system, cnpg-system). Changes: - Add grafana-system namespace + grafana-operator helm chart v5.24.0 (watches all namespaces). - Render CRDs inline (crds.immutable: false) so ArgoCD installs/manages the 13 grafana.integreatly.org CRDs instead of the skipped helm crds/ subchart. - Register apps/overlays/*/grafana-system in the platform ApplicationSet.
17 lines
477 B
YAML
17 lines
477 B
YAML
# Watches all namespaces by default (namespaceScope: false) so it can manage the
|
|
# Grafana instance + dashboards/datasources in the `grafana` namespace.
|
|
#
|
|
# Render the CRDs as normal templated manifests (instead of the helm `crds/`
|
|
# subchart, which `helm template`/kustomize skip) so ArgoCD installs and manages
|
|
# them alongside the operator.
|
|
crds:
|
|
immutable: false
|
|
replicas: 1
|
|
resources:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 128Mi
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|