Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 1 | # Copyright 2018 Intel Corporation, Inc |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | ################################################################# |
| 16 | # Global configuration defaults. |
| 17 | ################################################################# |
| 18 | |
| 19 | ################################################################# |
| 20 | # Application configuration defaults. |
| 21 | ################################################################# |
| 22 | # application image |
| 23 | repository: nexus3.onap.org:10001 |
Instrumental | defe9ad | 2019-05-08 14:11:57 -0500 | [diff] [blame] | 24 | image: onap/aaf/abrmd:4.0.0 |
Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 25 | pullPolicy: Always |
| 26 | |
| 27 | # flag to enable debugging - application support required |
| 28 | debugEnabled: false |
| 29 | |
| 30 | # application configuration |
| 31 | # Example: |
| 32 | # default number of instances |
| 33 | replicaCount: 1 |
| 34 | |
| 35 | # TPM specific node selection is done at parent chart aaf-sshsm |
| 36 | nodeSelector: {} |
| 37 | |
| 38 | affinity: {} |
| 39 | |
| 40 | ingress: |
| 41 | enabled: false |
| 42 | |
| 43 | # Configure resource requests and limits |
| 44 | flavor: small |
| 45 | resources: |
| 46 | small: |
| 47 | limits: |
Sylvain Desbureaux | c10829f | 2019-11-29 14:43:58 +0100 | [diff] [blame] | 48 | cpu: 20m |
| 49 | memory: 50Mi |
Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 50 | requests: |
| 51 | cpu: 10m |
| 52 | memory: 10Mi |
| 53 | large: |
| 54 | limits: |
| 55 | cpu: 400m |
| 56 | memory: 1Gi |
| 57 | requests: |
| 58 | cpu: 10m |
| 59 | memory: 100Mi |
| 60 | unlimited: {} |