blob: 5be8cacefdfc1aa08b01c715c6880eb6739cb90f [file] [log] [blame]
Jack Lucas7723ffe2020-02-13 17:19:01 -05001#============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#################################################################
21global:
22 persistence: {}
23 nodePortPrefix: 302
24 nodePortPrefixExt: 304
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020025 readinessImage: onap/oom/readiness:3.0.1
Jack Lucas7723ffe2020-02-13 17:19:01 -050026
27 ingress:
28 enabled: true
29 virtualhost:
30 enabled: false
31
32config:
Jack Lucas8d8c9b92020-03-30 15:56:46 -040033 nifiJarsIndexURL: http://dcaemod-genprocessor:8080/nifi-jars
Jack Lucas7723ffe2020-02-13 17:19:01 -050034 distributorAPIURL: /distributor
35 curlImage: curlimages/curl:7.68.0
36
37# application image
38repository: nexus3.onap.org:10001
Jack Lucas8d8c9b92020-03-30 15:56:46 -040039image: onap/org.onap.dcaegen2.platform.mod.designtool-web:1.0.2
Jack Lucas7723ffe2020-02-13 17:19:01 -050040
41service:
42 type: ClusterIP
43 name: dcaemod-designtool
44 ports:
45 - name: http
46 port: 8080
47
48ingress:
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
61liveness:
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
69readiness:
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
77flavor: small
78# Segregation for Different environment (Small and Large)
79resources:
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: {}