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 |
| 5 | # ================================================================================ |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | # ============LICENSE_END========================================================= |
| 18 | |
| 19 | ################################################################# |
| 20 | # Global configuration defaults. |
| 21 | ################################################################# |
| 22 | global: |
| 23 | nodePortPrefix: 302 |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 24 | readinessImage: onap/oom/readiness:3.0.1 |
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 |
| 45 | repository: nexus3.onap.org:10001 |
| 46 | image: onap/org.onap.dcaegen2.deployments.healthcheck-container:2.0.0 |
| 47 | |
| 48 | # Resource Limit flavor -By Default using small |
| 49 | flavor: small |
| 50 | # Segregation for Different environment (Small and Large) |
| 51 | resources: |
| 52 | small: |
| 53 | limits: |
| 54 | cpu: 2 |
| 55 | memory: 2Gi |
| 56 | requests: |
| 57 | cpu: 1 |
| 58 | memory: 1Gi |
| 59 | large: |
| 60 | limits: |
| 61 | cpu: 4 |
| 62 | memory: 4Gi |
| 63 | requests: |
| 64 | cpu: 2 |
| 65 | memory: 2Gi |
| 66 | unlimited: {} |
| 67 | |
| 68 | |