Merge "Update Keystore cert"
[oom.git] / kubernetes / aai / charts / aai-elasticsearch / values.yaml
1 # Copyright © 2018 Amdocs, Bell Canada, AT&T
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Default values for elasticsearch.
16 # This is a YAML-formatted file.
17 # Declare variables to be passed into your templates.
18 global: # global defaults
19   nodePortPrefix: 302
20
21 # application image
22 image: onap/elasticsearch-sg:1.4-STAGING-latest
23 pullPolicy: Always
24 restartPolicy: Always
25
26 flavor: small
27
28 # application configuration
29 config:
30   tcpPort: 8443
31   nodeKeyStore: esaai-keystore.jks
32   nodeKeyStorePassword: b87b46d3da7d3d4aadfe
33   adminKeyStore: sgadmin-keystore.p12
34   adminKeyStorePassword: 341274302a70ad691e12
35   trustStore: truststore.jks
36   trustStorePassword: b200926e9da205487f63
37
38 # default number of instances
39 replicaCount: 1
40
41 nodeSelector: {}
42
43 affinity: {}
44
45 # probe configuration parameters
46 liveness:
47   initialDelaySeconds: 10
48   periodSeconds: 10
49   # necessary to disable liveness probe when setting breakpoints
50   # in debugger so K8s doesn't restart unresponsive container
51   enabled: true
52
53 readiness:
54   initialDelaySeconds: 10
55   periodSeconds: 10
56
57 service:
58   type: ClusterIP
59   name: aai-elasticsearch
60   portName: aai-elasticsearch
61   internalPort: 9200
62   portName2: aai-elasticsearch-tcp
63   internalPort2: 8443
64
65 ingress:
66   enabled: false
67
68 persistence:
69   enabled: true
70
71   ## A manually managed Persistent Volume and Claim
72   ## Requires persistence.enabled: true
73   ## If defined, PVC must be created manually before volume will be bound
74   # existingClaim:
75   volumeReclaimPolicy: Retain
76
77   ## database data Persistent Volume Storage Class
78   ## If defined, storageClassName: <storageClass>
79   ## If set to "-", storageClassName: "", which disables dynamic provisioning
80   ## If undefined (the default) or set to null, no storageClassName spec is
81   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
82   ##   GKE, AWS & OpenStack)
83   ##
84   ## storageClass: "-"
85   accessMode: ReadWriteMany
86   size: 2Gi
87   mountPath: /dockerdata-nfs
88   mountSubPath: aai/elasticsearch/data
89
90 resources:
91   small:
92     limits:
93       cpu: 2
94       memory: 4Gi
95     requests:
96       cpu: 0.5
97       memory: 2Gi
98   large:
99     limits:
100       cpu: 4
101       memory: 8Gi
102     requests:
103       cpu: 1
104       memory: 4Gi
105   unlimited: {}