f2128d245766679c4d1be267e38990353db6f4d6
[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     virtualhost:
29       baseurl: "simpledemo.onap.org"
30
31 config:
32   nifiJarsIndexURL: http://dcaemod-genprocessor:8080/nifi-jars
33   distributorAPIURL: /distributor
34   curlImage: curlimages/curl:7.68.0
35
36 # application image
37 repository: nexus3.onap.org:10001
38 image: onap/org.onap.dcaegen2.platform.mod.designtool-web:1.0.2
39
40 service:
41   type: ClusterIP
42   name: dcaemod-designtool
43   ports:
44     - name: http
45       port: 8080
46
47 ingress:
48     enabled: true
49     enabledOverride: true
50     service:
51     - baseaddr: "dcaemod"
52       path: "/nifi"
53       name: "dcaemod-designtool"
54       port: 8080
55     - baseaddr: "dcaemod"
56       path: "/nifi-api"
57       name: "dcaemod-designtool"
58       port: 8080
59     config:
60       ssl: "none"
61
62 # probe configuration parameters
63 liveness:
64   initialDelaySeconds: 90
65   periodSeconds: 30
66   # necessary to disable liveness probe when setting breakpoints
67   # in debugger so K8s doesn't restart unresponsive container
68   enabled: true
69   port: http
70
71 readiness:
72   initialDelaySeconds: 60
73   periodSeconds: 20
74   path: /nifi-api/system-diagnostics
75   scheme: HTTP
76   port: http
77
78 # Resource Limit flavor -By Default using small
79 flavor: small
80 # Segregation for Different environment (Small and Large)
81 resources:
82   small:
83     limits:
84       cpu: 2
85       memory: 2Gi
86     requests:
87       cpu: 1
88       memory: 1Gi
89   large:
90     limits:
91       cpu: 4
92       memory: 4Gi
93     requests:
94       cpu: 2
95       memory: 2Gi
96   unlimited: {}