Elastic cloud on Kuberenetes, to expose kibana service in NodePort

4/15/2020

How to expose the kibana service in NodePortIp instead of clusterIP with eck operator approch? Below is my kibana configuration

apiVersion: kibana.k8s.elastic.co/v1
kind: Kibana
metadata:
  name: kibana
spec:
  image: kibana/kibana:7.6.0
  version: 7.6.0
  count: 1
  elasticsearchRef:
    name: dev
    namespace: namespaceName
  podTemplate:
    spec:
      containers:
        - name: kibana
          resources:
          requests:
            memory: 1Gi
            cpu: 0.5
          limits:
            memory: 2Gi
            cpu: 2
          env:
            - name: READINESS_PROBE_TIMEOUT
              value: "10"
-- Minisha
elasticsearch
kibana
kubernetes

0 Answers