[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / pomba / components / pomba-kibana / values.yaml
1 # 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 #################################################################
18 global:
19   nodePortPrefix: 302
20   persistence: {}
21
22 #################################################################
23 # Application configuration defaults.
24 #################################################################
25 # Configuration image
26 configImage: taskrabbit/elasticsearch-dump
27
28 # application image
29 image: kibana/kibana:6.6.2
30 pullPolicy: Always
31
32 # flag to enable debugging - application support required
33 debugEnabled: false
34
35 # application configuration
36 config:
37   elasticsearchServiceName: pomba-es
38   elasticsearchPort: 9200
39
40   #Enable HTTPS
41   serverSslEnabled: true
42   serverSslCertificate: /usr/share/kibana/auth/pomba.crt.pem
43   serverSslKey: /usr/share/kibana/auth/pomba.key.pem
44
45 # default number of instances
46 replicaCount: 1
47
48 nodeSelector: {}
49
50 affinity: {}
51
52 # probe configuration parameters
53 liveness:
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
61 readiness:
62   initialDelaySeconds: 300
63   periodSeconds: 10
64   timeoutSeconds: 1
65
66 service:
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
75
76 ingress:
77   enabled: false
78   service:
79     - baseaddr: "pombakibana"
80       name: "pomba-kibana"
81       port: 5601
82   config:
83     ssl: "none"
84
85 # Resource Limit flavor -By Default using small
86 flavor: small
87 # Segregation for Different environment (Small and Large)
88 resources:
89   small:
90     limits:
91       cpu: 2
92       memory: 1600Mi
93     requests:
94       cpu: 1
95       memory: 800Mi
96   large:
97     limits:
98       cpu: 4
99       memory: 3200Mi
100     requests:
101       cpu: 2
102       memory: 1600Mi
103   unlimited: {}