ElasticHQ/elasticsearch-HQ

Using Elasticsearch-HQ on Kubernetes with Ingress rules

Open

#473 建立於 2019年5月20日

在 GitHub 查看
 (1 留言) (1 反應) (0 負責人)JavaScript (4,921 star) (532 fork)batch import
help wanted

描述

General information

  • OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Kubernetes on RedHat Enterprise
  • ElasticHQ Version: release-v3.5.0
  • Browser Vendor and Version (if applicable): Chrome latest

Issue Description

We are running Elastic cluster and Elasticsearch-HQ also single Kubernetes cluster. We ´would like to access the HQ UI thru https:///hq

We would like to configure Kubernetes Ingress to point hq to Elastic-HQ service (service is here Kubernetes service).

Here sample ingress.yml

apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: name: kibana-http-ingress annotations: namespace: common kubernetes.io/ingress.class: nginx nginx.ingress.kubernetes.io/rewrite-target: / spec: rules: - host: vlcrmed001.at.inside http: paths: - path: /app/kibana backend: serviceName: kibana servicePort: 30601 - path: /auth backend: serviceName: keycloak servicePort: 30085 - path: /hq backend: serviceName: elasticsearch-hq servicePort: 30201

貢獻者指南