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