Kibana

A configuration reference for kibana service configuration in "Logging Operator"

Replicas

Number of kibana pods we want to run

replicas: 1

Image Configuration

Kibana image related configurations

  image: docker.elastic.co/kibana/kibana:7.8.0
  imagePullPolicy: "IfNotPresent"

Elasticsearch Configuration

Elasticsearch connection details information should be defined under the elasticsearch object.

  elasticsearch:
    host: "https://elasticsearch-cluster-client:9200"
    username: elastic
    password: "Opstree@1234"
    tlsEnabled: true
  elasticSecretName: elasticsearch-cluster-tls

Resources

Resources footprint can be defined under the resource object.

  resources:
    requests:
      cpu: 1000m
      memory: 1Gi
    limits:
      cpu: 1000m
      memory: 1Gi

Affinity

Affinity to configure the pod scheduling on nodes.

  affinity:
    podAntiAffinity:
      requiredDuringSchedulingIgnoredDuringExecution:
      - labelSelector:
          matchExpressions:
          - key: app
            operator: In
            values:
            - "kibana"
        topologyKey: kubernetes.io/hostname

Last updated