blob: 9be859cd781f7a7beee567461290fe3441bb6bd5 [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# application image
31loggingRepository: docker.elastic.co
ac255007f46962018-05-17 11:33:00 +020032image: logstash/logstash:5.6.9
33pullPolicy: Always
ac25508ac97172018-04-18 14:23:17 +020034
35# flag to enable debugging - application support required
36debugEnabled: false
37
38# application configuration
39config:
40 elasticsearchServiceName: cdash-es
41 elasticsearchPort: 9200
42 dmaapHost: message-router.{{ include "common.namespace" . }}
43 dmaapScheme: https
44 dmaapPort: 3905
45 dmaapConsumerGroup: "clampdashboard"
46 dmaapConsumerId: "clampdashboard"
47 eventTopic: "DCAE-CL-EVENT"
48 notificationTopic: "POLICY-CL-MGT"
49 requestTopic: "APPC-CL"
50
51# default number of instances
52replicaCount: 1
53
54nodeSelector: {}
55
56affinity: {}
57
58# probe configuration parameters
59liveness:
60 initialDelaySeconds: 120
61 periodSeconds: 10
62 # necessary to disable liveness probe when setting breakpoints
63 # in debugger so K8s doesn't restart unresponsive container
64 enabled: true
65
66readiness:
67 initialDelaySeconds: 10
68 periodSeconds: 10
69
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: ClusterIP
75 name: cdash-ls
76 portName: cdash-ls-healthcheck
77 externalPort: 9600
78 internalPort: 9600
79ingress:
80 enabled: false
81
Determe, Sebastien (sd378r)d600a8d2018-06-01 11:27:49 +020082#resources: {}
ac25508ac97172018-04-18 14:23:17 +020083 # We usually recommend not to specify default resources and to leave this as a conscious
84 # choice for the user. This also increases chances charts run on environments with little
85 # resources, such as Minikube. If you do want to specify resources, uncomment the following
86 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
87 #
88 # Example:
89 # Configure resource requests and limits
90 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
91 # Minimum memory for development is 2 CPU cores and 4GB memory
92 # Minimum memory for production is 4 CPU cores and 8GB memory
Determe, Sebastien (sd378r)d600a8d2018-06-01 11:27:49 +020093resources:
94 limits:
95 cpu: 1
96 memory: 1.3Gi
97 requests:
98 cpu: 10m
99 memory: 750Mi