Merge "clamphealth check"
[oom.git] / kubernetes / aai / charts / aai-elasticsearch / values.yaml
1 # Default values for elasticsearch.
2 # This is a YAML-formatted file.
3 # Declare variables to be passed into your templates.
4 global: # global defaults
5   nodePortPrefix: 302
6
7 # application image
8 dockerhubRepository: docker.io
9 image: elasticsearch:2.4.1
10 pullPolicy: Always
11
12 # application configuration
13 config:
14   tcpPort: 8443
15
16
17 # default number of instances
18 replicaCount: 1
19
20 nodeSelector: {}
21
22 affinity: {}
23
24 # probe configuration parameters
25 liveness:
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
32 readiness:
33   initialDelaySeconds: 10
34   periodSeconds: 10
35
36 service:
37   type: ClusterIP
38   name: aai-elasticsearch
39   portName: aai-elasticsearch
40   internalPort: 9200
41
42 ingress:
43   enabled: false
44
45 persistence:
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
67 resources: {}
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