e0775310156a10e95be4895136c827b6602c5e64
[oom.git] / kubernetes / clamp / values.yaml
1 #################################################################
2 # Global configuration defaults.
3 #################################################################
4 global: # 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
12 subChartsOnly:
13   enabled: true
14
15 # application image
16 repository: nexus3.onap.org:10001
17 image: onap/clamp
18 pullPolicy: Always
19
20 # flag to enable debugging - application support required
21 debugEnabled: false
22
23 #################################################################
24 # Application configuration defaults.
25 #################################################################
26 config:
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
35 mariadb:
36   nameOverride: clampdb
37
38
39 # default number of instances
40 replicaCount: 1
41
42 nodeSelector: {}
43
44 affinity: {}
45
46 # probe configuration parameters
47 liveness:
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
54 readiness:
55   initialDelaySeconds: 10
56   periodSeconds: 10
57
58
59 service:
60   type: NodePort
61   name: clamp
62   internalPort: 8080
63   nodePort: 95
64
65 ingress:
66   enabled: false
67
68 resources: {}
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