Merge "Add new model loader config parameters"
[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   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
7
8 # application image
9 dockerhubRepository: docker.io
10 image: elasticsearch:2.4.1
11 pullPolicy: Always
12
13 # application configuration
14 config:
15   tcpPort: 8443
16
17
18 # default number of instances
19 replicaCount: 1
20
21 nodeSelector: {}
22
23 affinity: {}
24
25 # probe configuration parameters
26 liveness:
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
33 readiness:
34   initialDelaySeconds: 10
35   periodSeconds: 10
36
37 service:
38   type: ClusterIP
39   name: aai-elasticsearch
40   portName: aai-elasticsearch
41   internalPort: 9200
42
43 ingress:
44   enabled: false
45
46 persistence:
47   enabled: true
48
49   ## A manually managed Persistent Volume and Claim
50   ## Requires persistence.enabled: true
51   ## If defined, PVC must be created manually before volume will be bound
52   # existingClaim:
53   volumeReclaimPolicy: Retain
54
55   ## database data Persistent Volume Storage Class
56   ## If defined, storageClassName: <storageClass>
57   ## If set to "-", storageClassName: "", which disables dynamic provisioning
58   ## If undefined (the default) or set to null, no storageClassName spec is
59   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
60   ##   GKE, AWS & OpenStack)
61   ##
62   ## storageClass: "-"
63   accessMode: ReadWriteMany
64   size: 2Gi
65   mountPath: /dockerdata-nfs
66   mountSubPath: aai/elasticsearch/data
67
68 resources: {}
69   # We usually recommend not to specify default resources and to leave this as a conscious
70   # choice for the user. This also increases chances charts run on environments with little
71   # resources, such as Minikube. If you do want to specify resources, uncomment the following
72   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
73   #
74   # Example:
75   # Configure resource requests and limits
76   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
77   # Minimum memory for development is 2 CPU cores and 4GB memory
78   # Minimum memory for production is 4 CPU cores and 8GB memory
79 #resources:
80 #  limits:
81 #    cpu: 2
82 #    memory: 4Gi
83 #  requests:
84 #    cpu: 2
85 #    memory: 4Gi