Skip to content
Snippets Groups Projects
values.yaml 6.66 KiB
###
# Theodolite resources
###

kafkaClient:
  enabled: true
  nodeSelector: {}
  

####
## configuration of sub charts
###

###
# Grafana
###
grafana:
  enabled: true
  nodeSelector: {}
  image:
    repository: grafana/grafana
    tag: 6.7.3
    pullPolicy: IfNotPresent
  # Administrator credentials when not using an existing secret (see below)
  adminUser: admin
  adminPassword: admin
  grafana.ini:
    #org_name: Theodolite
    auth.anonymous:
      # enable anonymous access
      enabled: true
      org_role: Admin # Role for unauthenticated users, other valid values are `Viewer`, `Editor` and `Admin`
    users:
      default_theme: light
    #dashboards: # the following doesn't work but is planed
      # Path to the default home dashboard. If this value is empty, then Grafana uses StaticRootPath + "dashboards/home.json"
      #default_home_dashboard_path: "/tmp/dashboards/k8s-dashboard.json"
  ## Sidecars that collect the configmaps with specified label and stores the included files them into the respective folders
  ## Requires at least Grafana 5 to work and can't be used together with parameters dashboardProviders, datasources and dashboards
  sidecar:
    image:
      repository: "kiwigrid/k8s-sidecar"
      tag: "0.1.99"
    imagePullPolicy: IfNotPresent
    dashboards:
      enabled: true
      provider:
        # allow updating provisioned dashboards from the UI
        allowUiUpdates: true
    datasources:
      enabled: true
  service:
    nodePort: 31199
    type: NodePort


###
# Confluent Platform 
###

cp-helm-charts:
  enabled: true
  ## ------------------------------------------------------
  ## Zookeeper
  ## ------------------------------------------------------
  cp-zookeeper:
    enabled: true
    nodeSelector: {}
    servers: 3 # default: 3 
    image: confluentinc/cp-zookeeper