blob: cac222e024d5ea75edfc8595f33046c0cffcb045 [file] [log] [blame]
ac25508ac97172018-04-18 14:23:17 +02001# Copyright © 2017 Amdocs, Bell Canada
Mukul379e2522018-09-05 12:26:02 +00002# Modifications Copyright © 2018 AT&T
ac25508ac97172018-04-18 14:23:17 +02003#
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.
ac25508ac97172018-04-18 14:23:17 +020015
16#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
21 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
22 readinessRepository: oomk8s
23 readinessImage: readiness-check:1.1.0
24 persistence: {}
25
26#################################################################
27# Application configuration defaults.
28#################################################################
29
30# Configuration image
31configRepository: docker.io
32configImage: taskrabbit/elasticsearch-dump
33
34
35# BusyBox image
36busyboxRepository: registry.hub.docker.com
37busyboxImage: library/busybox:latest
38
39# application image
40loggingRepository: docker.elastic.co
ac255007f46962018-05-17 11:33:00 +020041image: kibana/kibana:5.6.9
42pullPolicy: Always
ac25508ac97172018-04-18 14:23:17 +020043
44# flag to enable debugging - application support required
45debugEnabled: false
46
47# application configuration
48config:
49 elasticsearchServiceName: cdash-es
50 elasticsearchPort: 9200
51
52# default number of instances
53replicaCount: 1
54
55nodeSelector: {}
56
57affinity: {}
58
59# probe configuration parameters
60liveness:
61 initialDelaySeconds: 360
62 periodSeconds: 10
63 # necessary to disable liveness probe when setting breakpoints
64 # in debugger so K8s doesn't restart unresponsive container
65 enabled: true
66
67readiness:
68 initialDelaySeconds: 10
69 periodSeconds: 10
70
71service:
72 #Example service definition with external, internal and node ports.
73 #Services may use any combination of ports depending on the 'type' of
74 #service being defined.
75 type: NodePort
76 name: cdash-kibana
77 portName: cdash-kibana-http
78 externalPort: 5601
79 internalPort: 5601
80 nodePort: 90
81ingress:
82 enabled: false
83
Determe, Sebastien (sd378r)d600a8d2018-06-01 11:27:49 +020084#resources: {}
ac25508ac97172018-04-18 14:23:17 +020085 # We usually recommend not to specify default resources and to leave this as a conscious
86 # choice for the user. This also increases chances charts run on environments with little
87 # resources, such as Minikube. If you do want to specify resources, uncomment the following
88 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
89 #
90 # Example:
91 # Configure resource requests and limits
92 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
93 # Minimum memory for development is 2 CPU cores and 4GB memory
94 # Minimum memory for production is 4 CPU cores and 8GB memory
Determe, Sebastien (sd378r)d600a8d2018-06-01 11:27:49 +020095resources:
96 limits:
97 cpu: 1
98 memory: 2Gi
99 requests:
100 cpu: 10m
101 memory: 750Mi
102