forked from jetstack/navigator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathes-cluster-mixed.yaml
45 lines (39 loc) · 973 Bytes
/
es-cluster-mixed.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
41
42
43
44
45
apiVersion: navigator.jetstack.io/v1alpha1
kind: ElasticsearchCluster
metadata:
name: mixed
spec:
version: '5.2.2'
plugins:
- name: "io.fabric8:elasticsearch-cloud-kubernetes:5.2.2"
# NOTE: DO NOT SPECIFY MORE THAN ONE SYSCTL FOR NOW
sysctl:
- vm.max_map_count=262144
image:
repository: jetstackexperimental/pilot-elasticsearch
tag: latest
pullPolicy: Always
## This sets the group of the persistent volume created for
## the data nodes. This must be the same as the user that elasticsearch
## runs as within the container.
fsGroup: 1000
nodePools:
- name: mixed
replicas: 5
roles:
- data
- client
- master
resources:
requests:
cpu: '500m'
memory: 2Gi
limits:
cpu: '2'
memory: 3Gi
# persistent sets persistent storage config
persistence:
# size of the volume
size: 5Gi
# storageClass of the volume
storageClass: "fast"