-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathvalues.yaml
36 lines (34 loc) · 1020 Bytes
/
values.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
# Default values for elasticsearch-operator.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
# Check https://github.com/upmc-enterprises/elasticsearch-operator#customresourcedefinition for available options
spec:
use-ssl: false
elastic-search-image: quay.io/pires/docker-elasticsearch-kubernetes:6.4.2
client-node-replicas: 1
master-node-replicas: 1
data-node-replicas: 1
network-host: 0.0.0.0
zones: []
data-volume-size: 10Gi
client-java-options: "-Xms2048m -Xmx2048m"
master-java-options: "-Xms2048m -Xmx2048m"
data-java-options: "-Xms2048m -Xmx2048m"
snapshot:
enabled: false
bucketName: elasticsnapshots
schedule: "@every 2m"
storage:
# e.g. gp2 for AWS
type: gp2
# e.g. kubernetes.io/aws-ebs for AWS
classProvisioner: volume.alpha.kubernetes.io/storage-class
# Retain or Delete
reclaimPolicy: Delete
resources:
requests:
memory: 1024Mi
cpu: 200m
limits:
memory: 2048Mi
cpu: '1'