blob: 06fe3d9d1896a15128a2401cfadd9900a18ad251 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# 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
vaibhav_16decf67e4182018-03-19 05:45:47 +000015#################################################################
16# Global configuration defaults.
17#################################################################
18global: # global defaults
19 nodePortPrefix: 302
vaibhav_16decf67e4182018-03-19 05:45:47 +000020 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000021 readinessImage: readiness-check:2.0.0
vaibhav_16decf67e4182018-03-19 05:45:47 +000022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24
25subChartsOnly:
26 enabled: true
27
28# application image
29repository: nexus3.onap.org:10001
Gary Wudd568582018-05-08 07:21:20 -070030image: onap/clamp:2.0-STAGING-latest
Dusan Rozmanf776f3d2017-09-18 13:07:56 -040031pullPolicy: Always
vaibhav_16decf67e4182018-03-19 05:45:47 +000032
33# flag to enable debugging - application support required
34debugEnabled: false
35
36#################################################################
37# Application configuration defaults.
38#################################################################
39config:
40 mysqlPassword: strong_pitchou
41 dataRootDir: /dockerdata-nfs
ac2550a2619ed2018-04-04 13:01:04 +020042 springApplicationJson: >
43 {
Priyanka Jaincd7ba1e2018-05-02 04:59:02 +000044 "spring.datasource.cldsdb.url": "jdbc:mariadb:sequential://clampdb:3306/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3",
ac2550518760a2018-04-26 10:15:28 +020045 "clamp.config.sdc.catalog.url": "https://sdc-be:8443/sdc/v1/catalog/",
46 "clamp.config.sdc.hostUrl": "https://sdc-be:8443/",
47 "clamp.config.sdc.serviceUrl": "https://sdc-be:8443/sdc/v1/catalog/services",
ac2550a2619ed2018-04-04 13:01:04 +020048 "clamp.config.sdc.serviceUsername": "clamp",
49 "clamp.config.sdc.servicePassword": "b7acccda32b98c5bb7acccda32b98c5b05D511BD6D93626E90D18E9D24D9B78CD34C7EE8012F0A189A28763E82271E50A5D4EC10C7D93E06E0A2D27CAE66B981",
ac2550518760a2018-04-26 10:15:28 +020050 "clamp.config.dcae.inventory.url": "http://dcaegen2:8080",
51 "clamp.config.dcae.dispatcher.url": "http://dcaegen2:8080",
52 "clamp.config.policy.pdpUrl1": "https://policy-pdp:9091/pdp/ , testpdp, alpha123",
53 "clamp.config.policy.pdpUrl2": "https://policy-pdp:9091/pdp/ , testpdp, alpha123",
54 "clamp.config.policy.papUrl": "https://policy-pap:8443/pap/ , testpap, alpha123",
ac2550a2619ed2018-04-04 13:01:04 +020055 "clamp.config.policy.clientKey": "5CE79532B3A2CB4D132FC0C04BF916A7"
56 }
vaibhav_16decf67e4182018-03-19 05:45:47 +000057
58# subchart configuration
59mariadb:
60 nameOverride: clampdb
61
62
63# default number of instances
64replicaCount: 1
65
66nodeSelector: {}
67
68affinity: {}
69
70# probe configuration parameters
71liveness:
ac2550518760a2018-04-26 10:15:28 +020072 initialDelaySeconds: 30
vaibhav_16decf67e4182018-03-19 05:45:47 +000073 periodSeconds: 10
74 # necessary to disable liveness probe when setting breakpoints
75 # in debugger so K8s doesn't restart unresponsive container
76 enabled: true
77
78readiness:
79 initialDelaySeconds: 10
80 periodSeconds: 10
81
82
83service:
84 type: NodePort
85 name: clamp
BorislavG1ffbd992018-04-24 07:56:27 +000086 portName: clamp
vaibhav_16decf67e4182018-03-19 05:45:47 +000087 internalPort: 8080
88 nodePort: 95
89
90ingress:
91 enabled: false
92
93resources: {}
94 # We usually recommend not to specify default resources and to leave this as a conscious
95 # choice for the user. This also increases chances charts run on environments with little
96 # resources, such as Minikube. If you do want to specify resources, uncomment the following
97 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
98 #
99 # Example:
100 # Configure resource requests and limits
101 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
102 # Minimum memory for development is 2 CPU cores and 4GB memory
103 # Minimum memory for production is 4 CPU cores and 8GB memory
104#resources:
105# limits:
106# cpu: 2
107# memory: 4Gi
108# requests:
109# cpu: 2
110# memory: 4Gi