Logging Operator
  • Logging Operator
  • Quickstart
  • Installation
    • Kubectl
    • Helm
  • Setup
  • Management
  • Configuration
    • Elasticsearch
    • Fluentd
    • Kibana
    • Index Lifecycle
    • Index Template
  • DEVELOPMENT
  • ROADMAP
  • CHANGELOG
Powered by GitBook
On this page
  • Replicas
  • Image Configuration
  • Elasticsearch Configuration
  • Resources

Was this helpful?

  1. Configuration

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
PreviousFluentdNextIndex Lifecycle

Last updated 4 years ago

Was this helpful?