Merge "[VFC] Uses new tpls for repos / images"
[oom.git] / kubernetes / dcaemod / components / dcaemod-designtool / values.yaml
1 #============LICENSE_START========================================================
2 #=================================================================================
3 # Copyright (c) 2020 AT&T Intellectual Property. All rights reserved.
4 # ================================================================================
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 # ============LICENSE_END=========================================================
17
18 #################################################################
19 # Global configuration defaults.
20 #################################################################
21 global:
22   persistence: {}
23   nodePortPrefix: 302
24   nodePortPrefixExt: 304
25   readinessImage: onap/oom/readiness:3.0.1
26
27   ingress:
28     enabled: true
29     virtualhost:
30         enabled: false
31
32 config:
33   nifiJarsIndexURL: http://dcaemod-genprocessor:8080/nifi-jars
34   distributorAPIURL: /distributor
35   curlImage: curlimages/curl:7.68.0
36
37 # application image
38 repository: nexus3.onap.org:10001
39 image: onap/org.onap.dcaegen2.platform.mod.designtool-web:1.0.2
40
41 service:
42   type: ClusterIP
43   name: dcaemod-designtool
44   ports:
45     - name: http
46       port: 8080
47
48 ingress:
49     enabled: true
50     service:
51     - baseaddr: "nifi"
52       name: "dcaemod-designtool"
53       port: 8080
54     - baseaddr: "nifi-api"
55       name: "dcaemod-designtool"
56       port: 8080
57     config:
58       ssl: "none"
59
60 # probe configuration parameters
61 liveness:
62   initialDelaySeconds: 90
63   periodSeconds: 30
64   # necessary to disable liveness probe when setting breakpoints
65   # in debugger so K8s doesn't restart unresponsive container
66   enabled: true
67   port: http
68
69 readiness:
70   initialDelaySeconds: 60
71   periodSeconds: 20
72   path: /nifi-api/system-diagnostics
73   scheme: HTTP
74   port: http
75
76 # Resource Limit flavor -By Default using small
77 flavor: small
78 # Segregation for Different environment (Small and Large)
79 resources:
80   small:
81     limits:
82       cpu: 2
83       memory: 2Gi
84     requests:
85       cpu: 1
86       memory: 1Gi
87   large:
88     limits:
89       cpu: 4
90       memory: 4Gi
91     requests:
92       cpu: 2
93       memory: 2Gi
94   unlimited: {}