blob: e0775310156a10e95be4895136c827b6602c5e64 [file] [log] [blame]
vaibhav_16decf67e4182018-03-19 05:45:47 +00001#################################################################
2# Global configuration defaults.
3#################################################################
4global: # global defaults
5 nodePortPrefix: 302
6 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
7 readinessRepository: oomk8s
8 readinessImage: readiness-check:1.0.0
9 loggingRepository: docker.elastic.co
10 loggingImage: beats/filebeat:5.5.0
11
12subChartsOnly:
13 enabled: true
14
15# application image
16repository: nexus3.onap.org:10001
17image: onap/clamp
Dusan Rozmanf776f3d2017-09-18 13:07:56 -040018pullPolicy: Always
vaibhav_16decf67e4182018-03-19 05:45:47 +000019
20# flag to enable debugging - application support required
21debugEnabled: false
22
23#################################################################
24# Application configuration defaults.
25#################################################################
26config:
27 mysqlPassword: strong_pitchou
28 dataRootDir: /dockerdata-nfs
29 springApplicationJson: '{
30 "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",
31 "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"
32 }'
33
34# subchart configuration
35mariadb:
36 nameOverride: clampdb
37
38
39# default number of instances
40replicaCount: 1
41
42nodeSelector: {}
43
44affinity: {}
45
46# probe configuration parameters
47liveness:
48 initialDelaySeconds: 10
49 periodSeconds: 10
50 # necessary to disable liveness probe when setting breakpoints
51 # in debugger so K8s doesn't restart unresponsive container
52 enabled: true
53
54readiness:
55 initialDelaySeconds: 10
56 periodSeconds: 10
57
58
59service:
60 type: NodePort
61 name: clamp
62 internalPort: 8080
63 nodePort: 95
64
65ingress:
66 enabled: false
67
68resources: {}
69 # We usually recommend not to specify default resources and to leave this as a conscious
70 # choice for the user. This also increases chances charts run on environments with little
71 # resources, such as Minikube. If you do want to specify resources, uncomment the following
72 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
73 #
74 # Example:
75 # Configure resource requests and limits
76 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
77 # Minimum memory for development is 2 CPU cores and 4GB memory
78 # Minimum memory for production is 4 CPU cores and 8GB memory
79#resources:
80# limits:
81# cpu: 2
82# memory: 4Gi
83# requests:
84# cpu: 2
85# memory: 4Gi