[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / log / charts / log-kibana / 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   readinessImage: onap/oom/readiness:3.0.1
22   persistence: {}
23
24 #################################################################
25 # Application configuration defaults.
26 #################################################################
27
28 # Elasticdump image
29 elasticdumpRepository: docker.io
30 elasticdumpImage: taskrabbit/elasticsearch-dump
31
32 # BusyBox image
33 busyboxRepository: docker.io
34 busyboxImage: library/busybox:latest
35
36 # application image
37 loggingRepository: docker.elastic.co
38 image: kibana/kibana:5.5.0
39 pullPolicy: Always
40
41 # flag to enable debugging - application support required
42 debugEnabled: false
43
44 # application configuration
45 config:
46   elasticsearchServiceName: log-es
47   elasticsearchPort: 9200
48
49 # default number of instances
50 replicaCount: 1
51
52 nodeSelector: {}
53
54 affinity: {}
55
56 # probe configuration parameters
57 liveness:
58   initialDelaySeconds: 300
59   periodSeconds: 10
60   timeoutSeconds: 1
61   # necessary to disable liveness probe when setting breakpoints
62   # in debugger so K8s doesn't restart unresponsive container
63   enabled: true
64
65 readiness:
66   initialDelaySeconds: 300
67   periodSeconds: 10
68   timeoutSeconds: 1
69
70 service:
71   #Example service definition with external, internal and node ports.
72   #Services may use any combination of ports depending on the 'type' of
73   #service being defined.
74   type: NodePort
75   name: log-kibana
76   externalPort: 5601
77   internalPort: 5601
78   nodePort: 53
79
80 ingress:
81   enabled: false
82   service:
83     - baseaddr: "kibana.api"
84       name: "log-kibana"
85       port: 5601
86   config:
87     ssl: "none"
88
89 # Resource Limit flavor -By Default using small
90 flavor: small
91 # Segregation for Different environment (Small and Large)
92 resources:
93   small:
94     limits:
95       cpu: 2
96       memory: 4Gi
97     requests:
98       cpu: 1
99       memory: 2Gi
100   large:
101     limits:
102       cpu: 4
103       memory: 8Gi
104     requests:
105       cpu: 2
106       memory: 4Gi
107   unlimited: {}