blob: a5f05d51b44500fc4819b93d3cb1895350381dab [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
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020021 readinessImage: onap/oom/readiness:3.0.1
BorislavG5f3b6192018-03-25 18:12:38 +030022 persistence: {}
23
24#################################################################
25# Application configuration defaults.
26#################################################################
27
Artem Naluzhnyye02c2232019-05-31 11:18:30 +000028# Elasticdump image
29elasticdumpRepository: docker.io
30elasticdumpImage: taskrabbit/elasticsearch-dump
31
BorislavG5f3b6192018-03-25 18:12:38 +030032# BusyBox image
33busyboxRepository: registry.hub.docker.com
34busyboxImage: library/busybox:latest
35
36# application image
37loggingRepository: docker.elastic.co
38image: kibana/kibana:5.5.0
39pullPolicy: Always
40
41# flag to enable debugging - application support required
42debugEnabled: false
43
44# application configuration
45config:
46 elasticsearchServiceName: log-es
47 elasticsearchPort: 9200
48
49# default number of instances
50replicaCount: 1
51
52nodeSelector: {}
53
54affinity: {}
55
56# probe configuration parameters
57liveness:
Michael O'Brienac60aaf2018-05-23 17:25:08 -040058 initialDelaySeconds: 300
BorislavG5f3b6192018-03-25 18:12:38 +030059 periodSeconds: 10
root457c65a2018-04-04 14:51:59 +000060 timeoutSeconds: 1
BorislavG5f3b6192018-03-25 18:12:38 +030061 # necessary to disable liveness probe when setting breakpoints
62 # in debugger so K8s doesn't restart unresponsive container
63 enabled: true
64
65readiness:
Michael O'Brienac60aaf2018-05-23 17:25:08 -040066 initialDelaySeconds: 300
BorislavG5f3b6192018-03-25 18:12:38 +030067 periodSeconds: 10
root457c65a2018-04-04 14:51:59 +000068 timeoutSeconds: 1
BorislavG5f3b6192018-03-25 18:12:38 +030069
70service:
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
Lucjan Bryndzad6322c82019-12-02 15:32:10 +010079
BorislavG5f3b6192018-03-25 18:12:38 +030080ingress:
81 enabled: false
Lucjan Bryndzad6322c82019-12-02 15:32:10 +010082 service:
Lucjan Bryndza05649652020-04-29 08:52:33 +000083 - baseaddr: "kibana.api"
Lucjan Bryndzad6322c82019-12-02 15:32:10 +010084 name: "log-kibana"
85 port: 5601
86 config:
87 ssl: "none"
BorislavG5f3b6192018-03-25 18:12:38 +030088
Mandeep Khinda60d36d42018-09-24 15:15:48 +000089# Resource Limit flavor -By Default using small
vaibhavjayas659fbae2018-09-19 08:58:10 +000090flavor: small
91# Segregation for Different environment (Small and Large)
92resources:
93 small:
94 limits:
95 cpu: 2
96 memory: 4Gi
97 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +000098 cpu: 1
99 memory: 2Gi
vaibhavjayas659fbae2018-09-19 08:58:10 +0000100 large:
101 limits:
102 cpu: 4
103 memory: 8Gi
104 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000105 cpu: 2
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000106 memory: 4Gi
Lucjan Bryndza05649652020-04-29 08:52:33 +0000107 unlimited: {}