blob: 904798077ad702cd0a405a661d85ae0967914694 [file] [log] [blame]
ac25508ac97172018-04-18 14:23:17 +02001# 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# Modifications copyright (c) 2018 AT&T Intellectual Property
16
17#################################################################
18# Global configuration defaults.
19#################################################################
20global:
21 nodePortPrefix: 302
22 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
23 readinessRepository: oomk8s
24 readinessImage: readiness-check:1.1.0
25 persistence: {}
26
27#################################################################
28# Application configuration defaults.
29#################################################################
30
31# application image
32loggingRepository: docker.elastic.co
ac255007f46962018-05-17 11:33:00 +020033image: logstash/logstash:5.6.9
34pullPolicy: Always
ac25508ac97172018-04-18 14:23:17 +020035
36# flag to enable debugging - application support required
37debugEnabled: false
38
39# application configuration
40config:
41 elasticsearchServiceName: cdash-es
42 elasticsearchPort: 9200
43 dmaapHost: message-router.{{ include "common.namespace" . }}
44 dmaapScheme: https
45 dmaapPort: 3905
46 dmaapConsumerGroup: "clampdashboard"
47 dmaapConsumerId: "clampdashboard"
48 eventTopic: "DCAE-CL-EVENT"
49 notificationTopic: "POLICY-CL-MGT"
50 requestTopic: "APPC-CL"
51
52# default number of instances
53replicaCount: 1
54
55nodeSelector: {}
56
57affinity: {}
58
59# probe configuration parameters
60liveness:
61 initialDelaySeconds: 120
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: ClusterIP
76 name: cdash-ls
77 portName: cdash-ls-healthcheck
78 externalPort: 9600
79 internalPort: 9600
80ingress:
81 enabled: false
82
Determe, Sebastien (sd378r)d600a8d2018-06-01 11:27:49 +020083#resources: {}
ac25508ac97172018-04-18 14:23:17 +020084 # We usually recommend not to specify default resources and to leave this as a conscious
85 # choice for the user. This also increases chances charts run on environments with little
86 # resources, such as Minikube. If you do want to specify resources, uncomment the following
87 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
88 #
89 # Example:
90 # Configure resource requests and limits
91 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
92 # Minimum memory for development is 2 CPU cores and 4GB memory
93 # Minimum memory for production is 4 CPU cores and 8GB memory
Determe, Sebastien (sd378r)d600a8d2018-06-01 11:27:49 +020094resources:
95 limits:
96 cpu: 1
97 memory: 1.3Gi
98 requests:
99 cpu: 10m
100 memory: 750Mi