Merge "[UUI] Service Mesh Compliance for UUI"
[oom.git] / kubernetes / log / components / log-elasticsearch / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   persistence: {}
22
23 #################################################################
24 # Application configuration defaults.
25 #################################################################
26
27 # application image
28 image: elasticsearch/elasticsearch:5.5.0
29 pullPolicy: Always
30
31 # flag to enable debugging - application support required
32 debugEnabled: false
33
34 # application configuration
35 # Example:
36 config: {}
37
38 # default number of instances
39 replicaCount: 1
40
41 nodeSelector: {}
42
43 affinity: {}
44
45 # probe configuration parameters
46 liveness:
47   initialDelaySeconds: 120
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: 120
55   periodSeconds: 10
56
57 ## Persist data to a persitent volume
58 persistence:
59   enabled: true
60
61   ## A manually managed Persistent Volume and Claim
62   ## Requires persistence.enabled: true
63   ## If defined, PVC must be created manually before volume will be bound
64   # existingClaim:
65   volumeReclaimPolicy: Retain
66
67   ## database data Persistent Volume Storage Class
68   ## If defined, storageClassName: <storageClass>
69   ## If set to "-", storageClassName: "", which disables dynamic provisioning
70   ## If undefined (the default) or set to null, no storageClassName spec is
71   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
72   ##   GKE, AWS & OpenStack)
73   accessMode: ReadWriteOnce
74   size: 1Gi
75   mountPath: /dockerdata-nfs
76   mountSubPath: log/elasticsearch/data
77   mountSubPathLogs: log
78
79 service:
80   type: NodePort
81   name: log-es
82   externalPort: 9200
83   internalPort: 9200
84   nodePort: 54
85   type2: ClusterIP
86   name2: log-es-tcp
87   externalPort2: 9300
88   internalPort2: 9300
89
90 ingress:
91   enabled: false
92   service:
93     - baseaddr: "log-es-api"
94       name: "log-es"
95       port: 9200
96   config:
97     ssl: "none"
98 # Resource Limit flavor -By Default using small
99 flavor: small
100 # Segregation for Different environment (Small and Large)
101 resources:
102   small:
103     limits:
104       cpu: 1
105       memory: 4Gi
106     requests:
107       cpu: 1
108       memory: 2Gi
109   large:
110     limits:
111       cpu: 2
112       memory: 8Gi
113     requests:
114       cpu: 1
115       memory: 4Gi
116   unlimited: {}