Jack Lucas | 8c3463e | 2020-06-12 18:36:55 -0400 | [diff] [blame] | 1 | #============LICENSE_START======================================================== |
| 2 | #================================================================================= |
| 3 | # Copyright (c) 2018-2020 AT&T Intellectual Property. All rights reserved. |
| 4 | # Modifications Copyright © 2018 Amdocs, Bell Canada |
Jack Lucas | ea66ea7 | 2021-07-07 13:26:56 -0400 | [diff] [blame] | 5 | # Copyright (c) 2021 J. F. Lucas. All rights reserved. |
Jack Lucas | 8c3463e | 2020-06-12 18:36:55 -0400 | [diff] [blame] | 6 | # ================================================================================ |
| 7 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | # you may not use this file except in compliance with the License. |
| 9 | # You may obtain a copy of the License at |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
| 18 | # ============LICENSE_END========================================================= |
| 19 | |
| 20 | ################################################################# |
| 21 | # Global configuration defaults. |
| 22 | ################################################################# |
| 23 | global: |
| 24 | nodePortPrefix: 302 |
Jack Lucas | 8c3463e | 2020-06-12 18:36:55 -0400 | [diff] [blame] | 25 | |
| 26 | service: |
| 27 | name: dcaemod-healthcheck |
| 28 | type: ClusterIP |
| 29 | ports: |
| 30 | - name: http |
| 31 | port: 8080 |
| 32 | |
| 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 | 4b22da9 | 2021-12-09 21:54:10 -0500 | [diff] [blame] | 45 | image: onap/org.onap.dcaegen2.deployments.healthcheck-container:2.4.0 |
Jack Lucas | 8c3463e | 2020-06-12 18:36:55 -0400 | [diff] [blame] | 46 | |
| 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: {} |
| 66 | |
farida azmy | 5093301 | 2021-09-12 12:56:40 +0200 | [diff] [blame] | 67 | #Pods Service Account |
| 68 | serviceAccount: |
| 69 | nameOverride: dcaemod-healthcheck |
| 70 | roles: |
| 71 | - read |
Jack Lucas | 8c3463e | 2020-06-12 18:36:55 -0400 | [diff] [blame] | 72 | |