Jack Lucas | b92fe60 | 2018-04-20 18:51:34 +0000 | [diff] [blame] | 1 | #============LICENSE_START======================================================== |
| 2 | #================================================================================= |
| 3 | # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. |
Durgpal | 7ad4069 | 2018-08-03 07:28:36 +0000 | [diff] [blame] | 4 | # Modifications Copyright © 2018 Amdocs, Bell Canada |
Grzegorz-Lis | 10f5550 | 2020-08-19 10:25:39 +0200 | [diff] [blame] | 5 | # Modifications Copyright © 2020 Nokia |
Jack Lucas | ea66ea7 | 2021-07-07 13:26:56 -0400 | [diff] [blame^] | 6 | # Copyright (c) 2021 J. F. Lucas. All rights reserved. |
Jack Lucas | b92fe60 | 2018-04-20 18:51:34 +0000 | [diff] [blame] | 7 | # ================================================================================ |
| 8 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | # you may not use this file except in compliance with the License. |
| 10 | # You may obtain a copy of the License at |
| 11 | # |
| 12 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | # |
| 14 | # Unless required by applicable law or agreed to in writing, software |
| 15 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | # See the License for the specific language governing permissions and |
| 18 | # limitations under the License. |
| 19 | # ============LICENSE_END========================================================= |
| 20 | |
| 21 | ################################################################# |
| 22 | # Global configuration defaults. |
| 23 | ################################################################# |
| 24 | global: |
| 25 | nodePortPrefix: 302 |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 26 | |
Jack Lucas | b92fe60 | 2018-04-20 18:51:34 +0000 | [diff] [blame] | 27 | service: |
| 28 | name: dcae-healthcheck |
Vijay Venkatesh Kumar | ecd341e | 2020-02-27 04:05:57 +0000 | [diff] [blame] | 29 | internalPort: 8080 |
Jack Lucas | b92fe60 | 2018-04-20 18:51:34 +0000 | [diff] [blame] | 30 | externalPort: 80 |
| 31 | type: ClusterIP |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 32 | |
Jack Lucas | b92fe60 | 2018-04-20 18:51:34 +0000 | [diff] [blame] | 33 | # probe configuration parameters |
| 34 | liveness: |
| 35 | initialDelaySeconds: 10 |
| 36 | periodSeconds: 10 |
| 37 | # necessary to disable liveness probe when setting breakpoints |
| 38 | # in debugger so K8s doesn't restart unresponsive container |
| 39 | enabled: true |
| 40 | |
| 41 | readiness: |
| 42 | initialDelaySeconds: 10 |
| 43 | periodSeconds: 10 |
| 44 | # application image |
Jack Lucas | ea66ea7 | 2021-07-07 13:26:56 -0400 | [diff] [blame^] | 45 | image: onap/org.onap.dcaegen2.deployments.healthcheck-container:2.2.0 |
Jack Lucas | b92fe60 | 2018-04-20 18:51:34 +0000 | [diff] [blame] | 46 | |
vaibhav_16dec | db582fa | 2018-09-20 12:32:47 +0000 | [diff] [blame] | 47 | # Resource Limit flavor -By Default using small |
| 48 | flavor: small |
| 49 | # Segregation for Different environment (Small and Large) |
| 50 | resources: |
| 51 | small: |
| 52 | limits: |
| 53 | cpu: 2 |
| 54 | memory: 2Gi |
| 55 | requests: |
| 56 | cpu: 1 |
| 57 | memory: 1Gi |
| 58 | large: |
| 59 | limits: |
| 60 | cpu: 4 |
| 61 | memory: 4Gi |
| 62 | requests: |
| 63 | cpu: 2 |
| 64 | memory: 2Gi |
| 65 | unlimited: {} |
Jack Lucas | b92fe60 | 2018-04-20 18:51:34 +0000 | [diff] [blame] | 66 | # Kubernetes namespace for components deployed via Cloudify manager |
| 67 | # If empty, use the common namespace |
Lusheng Ji | 98f947e | 2018-04-30 12:03:37 -0400 | [diff] [blame] | 68 | # dcae_ns: "onap" |
Jack Lucas | b92fe60 | 2018-04-20 18:51:34 +0000 | [diff] [blame] | 69 | |