blob: 56cbff7ec061931d553bf1b99787403e05d74fa3 [file] [log] [blame]
Geora Barskya3f067c2018-07-19 16:46:37 -04001# Copyright © 2017 Amdocs, Bell Canada
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#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020020 readinessImage: onap/oom/readiness:3.0.1
Geora Barskya3f067c2018-07-19 16:46:37 -040021 persistence: {}
22
23#################################################################
24# Application configuration defaults.
25#################################################################
26# Configuration image
27configRepository: docker.io
28configImage: taskrabbit/elasticsearch-dump
29
30# BusyBox image
31busyboxRepository: registry.hub.docker.com
32busyboxImage: library/busybox:latest
33
34# application image
35loggingRepository: docker.elastic.co
Norm Traxlercc19c702019-03-27 20:36:47 +010036image: kibana/kibana:6.6.2
Geora Barskya3f067c2018-07-19 16:46:37 -040037pullPolicy: Always
38
39# flag to enable debugging - application support required
40debugEnabled: false
41
42# application configuration
43config:
44 elasticsearchServiceName: pomba-es
45 elasticsearchPort: 9200
46
Leigh, Phillip (pl876u)420c6e22018-12-14 20:33:42 -050047 #Enable HTTPS
48 serverSslEnabled: true
49 serverSslCertificate: /usr/share/kibana/auth/pomba.crt.pem
50 serverSslKey: /usr/share/kibana/auth/pomba.key.pem
51
Geora Barskya3f067c2018-07-19 16:46:37 -040052# default number of instances
53replicaCount: 1
54
55nodeSelector: {}
56
57affinity: {}
58
59# probe configuration parameters
60liveness:
61 initialDelaySeconds: 300
62 periodSeconds: 10
63 timeoutSeconds: 1
64 # necessary to disable liveness probe when setting breakpoints
65 # in debugger so K8s doesn't restart unresponsive container
66 enabled: true
67
68readiness:
69 initialDelaySeconds: 300
70 periodSeconds: 10
71 timeoutSeconds: 1
72
73service:
74 #Example service definition with external, internal and node ports.
75 #Services may use any combination of ports depending on the 'type' of
76 #service being defined.
77 type: NodePort
78 name: pomba-kibana
79 externalPort: 5601
80 internalPort: 5601
81 nodePort: 34
Lucjan Bryndzaa7637732019-11-28 11:58:16 +010082
Geora Barskya3f067c2018-07-19 16:46:37 -040083ingress:
84 enabled: false
Lucjan Bryndzaa7637732019-11-28 11:58:16 +010085 service:
86 - baseaddr: "pombakibana"
87 name: "pomba-kibana"
88 port: 5601
89 config:
90 ssl: "none"
Geora Barskya3f067c2018-07-19 16:46:37 -040091
jmacaf645b52018-10-11 12:21:54 +000092# Resource Limit flavor -By Default using small
93flavor: small
94# Segregation for Different environment (Small and Large)
95resources:
96 small:
97 limits:
98 cpu: 2
jmac3b4fcfc2018-11-23 18:43:24 +000099 memory: 1600Mi
jmacaf645b52018-10-11 12:21:54 +0000100 requests:
101 cpu: 1
jmac3b4fcfc2018-11-23 18:43:24 +0000102 memory: 800Mi
jmacaf645b52018-10-11 12:21:54 +0000103 large:
104 limits:
105 cpu: 4
jmac3b4fcfc2018-11-23 18:43:24 +0000106 memory: 3200Mi
jmacaf645b52018-10-11 12:21:54 +0000107 requests:
108 cpu: 2
jmac3b4fcfc2018-11-23 18:43:24 +0000109 memory: 1600Mi
jmacaf645b52018-10-11 12:21:54 +0000110 unlimited: {}