blob: c2a522b1c8d8f7ef6bfc61697b2f65177ead64be [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==
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020022 readinessImage: onap/oom/readiness:3.0.1
ac25508ac97172018-04-18 14:23:17 +020023 persistence: {}
Sylvain Desbureaux45fba762018-11-23 11:35:46 +010024flavor: small
ac25508ac97172018-04-18 14:23:17 +020025
26#################################################################
27# Application configuration defaults.
28#################################################################
29
30# application image
Julien Barboted56cca2018-10-22 17:53:07 +020031repository: nexus3.onap.org:10001
osgn422wfea3c092020-03-03 19:57:18 +010032image: onap/clamp-dashboard-logstash:5.0.3
ac255007f46962018-05-17 11:33:00 +020033pullPolicy: 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
ac2550a0496b02018-09-20 14:57:22 +020042 dmaapHost: message-router
osgn422wb561a592020-02-11 15:50:21 +010043 dmaapSchemeSSL: https
44 dmaapSchemeNoSSL: http
ac25508ac97172018-04-18 14:23:17 +020045 dmaapPort: 3905
46 dmaapConsumerGroup: "clampdashboard"
47 dmaapConsumerId: "clampdashboard"
48 eventTopic: "DCAE-CL-EVENT"
49 notificationTopic: "POLICY-CL-MGT"
50 requestTopic: "APPC-CL"
osgn422w6e663e42019-08-02 11:31:11 +020051 logstash_user: "logstash"
52 logstash_pwd: "logstash"
ac25508ac97172018-04-18 14:23:17 +020053
54# default number of instances
55replicaCount: 1
56
57nodeSelector: {}
58
59affinity: {}
60
61# probe configuration parameters
62liveness:
osgn422wb561a592020-02-11 15:50:21 +010063 initialDelaySeconds: 900
64 periodSeconds: 20
65 timeoutSeconds: 5
ac25508ac97172018-04-18 14:23:17 +020066 # necessary to disable liveness probe when setting breakpoints
67 # in debugger so K8s doesn't restart unresponsive container
68 enabled: true
69
70readiness:
osgn422wb561a592020-02-11 15:50:21 +010071 initialDelaySeconds: 900
72 periodSeconds: 20
73 timeoutSeconds: 5
74
75security:
76 ssl:
77 enabled: true
ac25508ac97172018-04-18 14:23:17 +020078
79service:
80 #Example service definition with external, internal and node ports.
81 #Services may use any combination of ports depending on the 'type' of
82 #service being defined.
83 type: ClusterIP
84 name: cdash-ls
85 portName: cdash-ls-healthcheck
86 externalPort: 9600
87 internalPort: 9600
88ingress:
89 enabled: false
90
Determe, Sebastien (sd378r)d600a8d2018-06-01 11:27:49 +020091#resources: {}
ac25508ac97172018-04-18 14:23:17 +020092 # We usually recommend not to specify default resources and to leave this as a conscious
93 # choice for the user. This also increases chances charts run on environments with little
94 # resources, such as Minikube. If you do want to specify resources, uncomment the following
95 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
96 #
97 # Example:
98 # Configure resource requests and limits
99 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
100 # Minimum memory for development is 2 CPU cores and 4GB memory
101 # Minimum memory for production is 4 CPU cores and 8GB memory
Determe, Sebastien (sd378r)d600a8d2018-06-01 11:27:49 +0200102resources:
Sylvain Desbureaux45fba762018-11-23 11:35:46 +0100103 small:
104 limits:
105 cpu: 1
106 memory: 1.3Gi
107 requests:
108 cpu: 10m
109 memory: 750Mi
110 large:
111 limits:
112 cpu: 1
113 memory: 1.3Gi
114 requests:
115 cpu: 10m
116 memory: 750Mi
117 unlimited: {}