Customize kibana image in ECK operator

Hi,
How to Customize kibana image in ECK operator ? Here is my kibana yaml

apiVersion: kibana.k8s.elastic.co/v1
kind: Kibana
metadata:
  name: elasticsearch
spec:
  version: 7.17.14
  count: 1
  elasticsearchRef:
    name: elasticsearch

  http:

    #service:
    #  spec:
    #    type: ClusterIP
    #    ports:
    #    - name: https
    #      port: 5601
    #      targetPort: 5601
    #      protocol: TCP
    tls:
      selfSignedCertificate:
        disabled: true

You can just use spec.image in your YAML
See this documentation page

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.