blob: deed02fd18ec8afef38cac2f0d441cf24375e639 [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
Geora Barskya3f067c2018-07-19 16:46:37 -040020 persistence: {}
21
22#################################################################
23# Application configuration defaults.
24#################################################################
25# Configuration image
Geora Barskya3f067c2018-07-19 16:46:37 -040026configImage: taskrabbit/elasticsearch-dump
27
Geora Barskya3f067c2018-07-19 16:46:37 -040028# application image
Norm Traxlercc19c702019-03-27 20:36:47 +010029image: kibana/kibana:6.6.2
Geora Barskya3f067c2018-07-19 16:46:37 -040030pullPolicy: Always
31
32# flag to enable debugging - application support required
33debugEnabled: false
34
35# application configuration
36config:
37 elasticsearchServiceName: pomba-es
38 elasticsearchPort: 9200
39
Leigh, Phillip (pl876u)420c6e22018-12-14 20:33:42 -050040 #Enable HTTPS
41 serverSslEnabled: true
42 serverSslCertificate: /usr/share/kibana/auth/pomba.crt.pem
43 serverSslKey: /usr/share/kibana/auth/pomba.key.pem
44
Geora Barskya3f067c2018-07-19 16:46:37 -040045# default number of instances
46replicaCount: 1
47
48nodeSelector: {}
49
50affinity: {}
51
52# probe configuration parameters
53liveness:
54 initialDelaySeconds: 300
55 periodSeconds: 10
56 timeoutSeconds: 1
57 # necessary to disable liveness probe when setting breakpoints
58 # in debugger so K8s doesn't restart unresponsive container
59 enabled: true
60
61readiness:
62 initialDelaySeconds: 300
63 periodSeconds: 10
64 timeoutSeconds: 1
65
66service:
67 #Example service definition with external, internal and node ports.
68 #Services may use any combination of ports depending on the 'type' of
69 #service being defined.
70 type: NodePort
71 name: pomba-kibana
72 externalPort: 5601
73 internalPort: 5601
74 nodePort: 34
Lucjan Bryndzaa7637732019-11-28 11:58:16 +010075
Geora Barskya3f067c2018-07-19 16:46:37 -040076ingress:
77 enabled: false
Lucjan Bryndzaa7637732019-11-28 11:58:16 +010078 service:
79 - baseaddr: "pombakibana"
80 name: "pomba-kibana"
81 port: 5601
82 config:
83 ssl: "none"
Geora Barskya3f067c2018-07-19 16:46:37 -040084
jmacaf645b52018-10-11 12:21:54 +000085# Resource Limit flavor -By Default using small
86flavor: small
87# Segregation for Different environment (Small and Large)
88resources:
89 small:
90 limits:
91 cpu: 2
jmac3b4fcfc2018-11-23 18:43:24 +000092 memory: 1600Mi
jmacaf645b52018-10-11 12:21:54 +000093 requests:
94 cpu: 1
jmac3b4fcfc2018-11-23 18:43:24 +000095 memory: 800Mi
jmacaf645b52018-10-11 12:21:54 +000096 large:
97 limits:
98 cpu: 4
jmac3b4fcfc2018-11-23 18:43:24 +000099 memory: 3200Mi
jmacaf645b52018-10-11 12:21:54 +0000100 requests:
101 cpu: 2
jmac3b4fcfc2018-11-23 18:43:24 +0000102 memory: 1600Mi
jmacaf645b52018-10-11 12:21:54 +0000103 unlimited: {}