Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 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 |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 25 | ingress: |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 26 | virtualhost: |
Sylvain Desbureaux | afae229 | 2020-12-08 10:48:29 +0100 | [diff] [blame] | 27 | baseurl: "simpledemo.onap.org" |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 28 | |
| 29 | config: |
Jack Lucas | 8d8c9b9 | 2020-03-30 15:56:46 -0400 | [diff] [blame] | 30 | nifiJarsIndexURL: http://dcaemod-genprocessor:8080/nifi-jars |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 31 | distributorAPIURL: /distributor |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 32 | |
| 33 | # application image |
Jack Lucas | 8d8c9b9 | 2020-03-30 15:56:46 -0400 | [diff] [blame] | 34 | image: onap/org.onap.dcaegen2.platform.mod.designtool-web:1.0.2 |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 35 | |
| 36 | service: |
| 37 | type: ClusterIP |
| 38 | name: dcaemod-designtool |
| 39 | ports: |
| 40 | - name: http |
| 41 | port: 8080 |
| 42 | |
| 43 | ingress: |
| 44 | enabled: true |
Sylvain Desbureaux | afae229 | 2020-12-08 10:48:29 +0100 | [diff] [blame] | 45 | enabledOverride: true |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 46 | service: |
Andreas Geissler | 51900a9 | 2022-08-03 13:10:35 +0200 | [diff] [blame] | 47 | - baseaddr: "dcaemod-nifi-ui" |
Sylvain Desbureaux | afae229 | 2020-12-08 10:48:29 +0100 | [diff] [blame] | 48 | path: "/nifi" |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 49 | name: "dcaemod-designtool" |
| 50 | port: 8080 |
Andreas Geissler | 51900a9 | 2022-08-03 13:10:35 +0200 | [diff] [blame] | 51 | - baseaddr: "dcaemod-nifi-api" |
Sylvain Desbureaux | afae229 | 2020-12-08 10:48:29 +0100 | [diff] [blame] | 52 | path: "/nifi-api" |
Jack Lucas | 7723ffe | 2020-02-13 17:19:01 -0500 | [diff] [blame] | 53 | name: "dcaemod-designtool" |
| 54 | port: 8080 |
| 55 | config: |
| 56 | ssl: "none" |
| 57 | |
| 58 | # probe configuration parameters |
| 59 | liveness: |
| 60 | initialDelaySeconds: 90 |
| 61 | periodSeconds: 30 |
| 62 | # necessary to disable liveness probe when setting breakpoints |
| 63 | # in debugger so K8s doesn't restart unresponsive container |
| 64 | enabled: true |
| 65 | port: http |
| 66 | |
| 67 | readiness: |
| 68 | initialDelaySeconds: 60 |
| 69 | periodSeconds: 20 |
| 70 | path: /nifi-api/system-diagnostics |
| 71 | scheme: HTTP |
| 72 | port: http |
| 73 | |
| 74 | # Resource Limit flavor -By Default using small |
| 75 | flavor: small |
| 76 | # Segregation for Different environment (Small and Large) |
| 77 | resources: |
| 78 | small: |
| 79 | limits: |
| 80 | cpu: 2 |
| 81 | memory: 2Gi |
| 82 | requests: |
| 83 | cpu: 1 |
| 84 | memory: 1Gi |
| 85 | large: |
| 86 | limits: |
| 87 | cpu: 4 |
| 88 | memory: 4Gi |
| 89 | requests: |
| 90 | cpu: 2 |
| 91 | memory: 2Gi |
| 92 | unlimited: {} |
farida azmy | 5093301 | 2021-09-12 12:56:40 +0200 | [diff] [blame] | 93 | |
| 94 | #Pods Service Account |
| 95 | serviceAccount: |
| 96 | nameOverride: dcaemod-designtool |
| 97 | roles: |
| 98 | - read |