blob: 8e01f4210fd69a91ada124a964595fae3007d1a5 [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
20 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
21 readinessRepository: oomk8s
22 readinessImage: readiness-check:1.0.0
23 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25
26subChartsOnly:
27 enabled: true
28
29# application image
30repository: nexus3.onap.org:10001
31image: onap/clamp
Dusan Rozmanf776f3d2017-09-18 13:07:56 -040032pullPolicy: Always
vaibhav_16decf67e4182018-03-19 05:45:47 +000033
34# flag to enable debugging - application support required
35debugEnabled: false
36
37#################################################################
38# Application configuration defaults.
39#################################################################
40config:
41 mysqlPassword: strong_pitchou
42 dataRootDir: /dockerdata-nfs
43 springApplicationJson: '{
44 "spring.datasource.camunda.url": "jdbc:mariadb:sequential://clamp-mariadb.{{include "common.namespace" .}}:3306/camundabpm?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true&retriesAllDown=2147483647&failoverLoopRetries=2147483647",
45 "spring.datasource.cldsdb.url": "jdbc:mariadb:sequential://clamp-mariadb.{{include "common.namespace" .}}:3306/cldsdb4?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true&retriesAllDown=2147483647&failoverLoopRetries=2147483647"
46 }'
47
48# subchart configuration
49mariadb:
50 nameOverride: clampdb
51
52
53# default number of instances
54replicaCount: 1
55
56nodeSelector: {}
57
58affinity: {}
59
60# probe configuration parameters
61liveness:
62 initialDelaySeconds: 10
63 periodSeconds: 10
64 # necessary to disable liveness probe when setting breakpoints
65 # in debugger so K8s doesn't restart unresponsive container
66 enabled: true
67
68readiness:
69 initialDelaySeconds: 10
70 periodSeconds: 10
71
72
73service:
74 type: NodePort
75 name: clamp
76 internalPort: 8080
77 nodePort: 95
78
79ingress:
80 enabled: false
81
82resources: {}
83 # 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
93#resources:
94# limits:
95# cpu: 2
96# memory: 4Gi
97# requests:
98# cpu: 2
99# memory: 4Gi