blob: 767ea6ae998545a40cfdf587e7f7483c557db60f [file] [log] [blame]
BorislavG5f3b6192018-03-25 18:12:38 +03001# Copyright © 2017 Amdocs, Bell Canada
Mukul7de56c82018-09-04 08:03:27 +00002# Modifications Copyright © 2018 AT&T
BorislavG5f3b6192018-03-25 18:12:38 +03003#
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#################################################################
19global:
20 nodePortPrefix: 302
BorislavG5f3b6192018-03-25 18:12:38 +030021 persistence: {}
22
23#################################################################
24# Application configuration defaults.
25#################################################################
26
Artem Naluzhnyye02c2232019-05-31 11:18:30 +000027# Elasticdump image
Artem Naluzhnyye02c2232019-05-31 11:18:30 +000028elasticdumpImage: taskrabbit/elasticsearch-dump
29
BorislavG5f3b6192018-03-25 18:12:38 +030030# application image
BorislavG5f3b6192018-03-25 18:12:38 +030031image: kibana/kibana:5.5.0
32pullPolicy: Always
33
34# flag to enable debugging - application support required
35debugEnabled: false
36
37# application configuration
38config:
39 elasticsearchServiceName: log-es
40 elasticsearchPort: 9200
41
42# default number of instances
43replicaCount: 1
44
45nodeSelector: {}
46
47affinity: {}
48
49# probe configuration parameters
50liveness:
Michael O'Brienac60aaf2018-05-23 17:25:08 -040051 initialDelaySeconds: 300
BorislavG5f3b6192018-03-25 18:12:38 +030052 periodSeconds: 10
root457c65a2018-04-04 14:51:59 +000053 timeoutSeconds: 1
BorislavG5f3b6192018-03-25 18:12:38 +030054 # necessary to disable liveness probe when setting breakpoints
55 # in debugger so K8s doesn't restart unresponsive container
56 enabled: true
57
58readiness:
Michael O'Brienac60aaf2018-05-23 17:25:08 -040059 initialDelaySeconds: 300
BorislavG5f3b6192018-03-25 18:12:38 +030060 periodSeconds: 10
root457c65a2018-04-04 14:51:59 +000061 timeoutSeconds: 1
BorislavG5f3b6192018-03-25 18:12:38 +030062
63service:
64 #Example service definition with external, internal and node ports.
65 #Services may use any combination of ports depending on the 'type' of
66 #service being defined.
67 type: NodePort
68 name: log-kibana
69 externalPort: 5601
70 internalPort: 5601
71 nodePort: 53
Lucjan Bryndzad6322c82019-12-02 15:32:10 +010072
BorislavG5f3b6192018-03-25 18:12:38 +030073ingress:
74 enabled: false
Lucjan Bryndzad6322c82019-12-02 15:32:10 +010075 service:
Lucjan Bryndza05649652020-04-29 08:52:33 +000076 - baseaddr: "kibana.api"
Lucjan Bryndzad6322c82019-12-02 15:32:10 +010077 name: "log-kibana"
78 port: 5601
79 config:
80 ssl: "none"
BorislavG5f3b6192018-03-25 18:12:38 +030081
Mandeep Khinda60d36d42018-09-24 15:15:48 +000082# Resource Limit flavor -By Default using small
vaibhavjayas659fbae2018-09-19 08:58:10 +000083flavor: small
84# Segregation for Different environment (Small and Large)
85resources:
86 small:
87 limits:
88 cpu: 2
89 memory: 4Gi
90 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +000091 cpu: 1
92 memory: 2Gi
vaibhavjayas659fbae2018-09-19 08:58:10 +000093 large:
94 limits:
95 cpu: 4
96 memory: 8Gi
97 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +000098 cpu: 2
Mandeep Khinda60d36d42018-09-24 15:15:48 +000099 memory: 4Gi
Lucjan Bryndza05649652020-04-29 08:52:33 +0000100 unlimited: {}