[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / cds / charts / cds-sdc-listener / values.yaml
1 # Copyright (c) 2019 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 #################################################################
15 # Global configuration defaults.
16 #################################################################
17 global:
18   # Change to an unused port prefix range to prevent port conflicts
19   # with other instances running within the same k8s cluster
20   nodePortPrefix: 302
21
22   # image repositories
23   repository: nexus3.onap.org:10001
24
25   # readiness check
26   readinessImage: onap/oom/readiness:3.0.1
27
28   # image pull policy
29   pullPolicy: Always
30
31   persistence:
32     mountPath: /dockerdata-nfs
33
34 #################################################################
35 # Application configuration defaults.
36 #################################################################
37 # application image
38 repository: nexus3.onap.org:10001
39 image: onap/ccsdk-sdclistener:1.0.1
40 name: sdc-listener
41 pullPolicy: Always
42
43 # flag to enable debugging - application support required
44 debugEnabled: false
45
46 # application configuration
47 config:
48   appConfigDir: /opt/app/onap/config
49
50 # default number of instances
51 replicaCount: 1
52
53 nodeSelector: {}
54
55 affinity: {}
56
57 # probe configuration parameters
58 liveness:
59   initialDelaySeconds: 10
60   periodSeconds: 10
61   # necessary to disable liveness probe when setting breakpoints
62   # in debugger so K8s doesn't restart unresponsive container
63   enabled: true
64
65 readiness:
66   initialDelaySeconds: 10
67   periodSeconds: 10
68
69 service:
70   type: ClusterIP
71   http:
72     portName: cds-sdc-listener-http
73     internalPort: 8080
74     externalPort: 8080
75
76 persistence:
77   enabled: true
78
79 ingress:
80   enabled: false
81
82 logback:
83   rootLogLevel: INFO
84   logger:
85     springframework: INFO
86     springframeworkWeb: INFO
87     springframeworkSecurityWebauthentication: INFO
88     hibernate: INFO
89     onapCcsdkCds: INFO
90
91 flavor: small
92
93 resources:
94   small:
95     limits:
96       cpu: 2
97       memory: 4Gi
98     requests:
99       cpu: 1
100       memory: 1Gi
101   large:
102     limits:
103       cpu: 4
104       memory: 8Gi
105     requests:
106       cpu: 2
107       memory: 4Gi
108   unlimited: {}