blob: 94357c04355106e789a82793c600a237ea23a5e1 [file] [log] [blame]
kj6a8ce802018-03-19 15:07:44 +02001# Default values for elasticsearch.
2# This is a YAML-formatted file.
3# Declare variables to be passed into your templates.
4global: # global defaults
5 nodePortPrefix: 302
kj6a8ce802018-03-19 15:07:44 +02006
7# application image
8dockerhubRepository: docker.io
9image: elasticsearch:2.4.1
10pullPolicy: Always
11
12# application configuration
13config:
14 tcpPort: 8443
15
16
17# default number of instances
18replicaCount: 1
19
20nodeSelector: {}
21
22affinity: {}
23
24# probe configuration parameters
25liveness:
26 initialDelaySeconds: 10
27 periodSeconds: 10
28 # necessary to disable liveness probe when setting breakpoints
29 # in debugger so K8s doesn't restart unresponsive container
30 enabled: true
31
32readiness:
33 initialDelaySeconds: 10
34 periodSeconds: 10
35
36service:
37 type: ClusterIP
38 name: aai-elasticsearch
BorislavGe7500682018-04-24 07:56:27 +000039 portName: aai-elasticsearch
kj6a8ce802018-03-19 15:07:44 +020040 internalPort: 9200
41
42ingress:
43 enabled: false
44
45persistence:
46 enabled: true
47
48 ## A manually managed Persistent Volume and Claim
49 ## Requires persistence.enabled: true
50 ## If defined, PVC must be created manually before volume will be bound
51 # existingClaim:
52 volumeReclaimPolicy: Retain
53
54 ## database data Persistent Volume Storage Class
55 ## If defined, storageClassName: <storageClass>
56 ## If set to "-", storageClassName: "", which disables dynamic provisioning
57 ## If undefined (the default) or set to null, no storageClassName spec is
58 ## set, choosing the default provisioner. (gp2 on AWS, standard on
59 ## GKE, AWS & OpenStack)
60 ##
61 ## storageClass: "-"
62 accessMode: ReadWriteMany
63 size: 2Gi
64 mountPath: /dockerdata-nfs
65 mountSubPath: aai/elasticsearch/data
66
67resources: {}
68 # We usually recommend not to specify default resources and to leave this as a conscious
69 # choice for the user. This also increases chances charts run on environments with little
70 # resources, such as Minikube. If you do want to specify resources, uncomment the following
71 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
72 #
73 # Example:
74 # Configure resource requests and limits
75 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
76 # Minimum memory for development is 2 CPU cores and 4GB memory
77 # Minimum memory for production is 4 CPU cores and 8GB memory
78#resources:
79# limits:
80# cpu: 2
81# memory: 4Gi
82# requests:
83# cpu: 2
84# memory: 4Gi