-
Notifications
You must be signed in to change notification settings - Fork 8
/
es.yaml
40 lines (40 loc) · 826 Bytes
/
es.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
apiVersion: elasticsearch.k8s.elastic.co/v1
kind: Elasticsearch
metadata:
name: es
spec:
version: 7.15.1
nodeSets:
- name: default
count: 1
podTemplate:
spec:
containers:
- name: elasticsearch
env:
- name: READINESS_PROBE_PROTOCOL
value: "http"
config:
node.store.allow_mmap: false
xpack.security.enabled: false
xpack.security.http.ssl.enabled: false
xpack.security.transport.ssl.enabled: false
---
apiVersion: kibana.k8s.elastic.co/v1
kind: Kibana
metadata:
name: kb
spec:
version: 7.15.1
count: 1
http:
service:
spec:
type: NodePort
ports:
- port: 5601
nodePort: 32608
name: https
config:
elasticsearch.hosts:
- http://es-es-http:9200