blob: af7fd3d3ed3fe193d6771794d719928377020d54 [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
6 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
7
8# application image
9dockerhubRepository: docker.io
10image: elasticsearch:2.4.1
11pullPolicy: Always
12
13# application configuration
14config:
15 tcpPort: 8443
16
17
18# default number of instances
19replicaCount: 1
20
21nodeSelector: {}
22
23affinity: {}
24
25# probe configuration parameters
26liveness:
27 initialDelaySeconds: 10
28 periodSeconds: 10
29 # necessary to disable liveness probe when setting breakpoints
30 # in debugger so K8s doesn't restart unresponsive container
31 enabled: true
32
33readiness:
34 initialDelaySeconds: 10
35 periodSeconds: 10
36
37service:
38 type: ClusterIP
39 name: aai-elasticsearch
40 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