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 | global: |
| 19 | persistence: {} |
| 20 | |
| 21 | ################################################################# |
| 22 | # Application configuration defaults. |
| 23 | ################################################################# |
| 24 | # application image |
| 25 | repository: nexus3.onap.org:10001 |
Instrumental | defe9ad | 2019-05-08 14:11:57 -0500 | [diff] [blame] | 26 | image: onap/aaf/distcenter:4.0.0 |
Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 27 | pullPolicy: Always |
| 28 | |
| 29 | # flag to enable debugging - application support required |
| 30 | debugEnabled: false |
| 31 | |
| 32 | # application configuration |
| 33 | # Example: |
| 34 | # default number of instances |
| 35 | replicaCount: 1 |
| 36 | |
| 37 | nodeSelector: {} |
| 38 | |
| 39 | affinity: {} |
| 40 | |
| 41 | persistence: |
| 42 | enabled: true |
| 43 | volumeReclaimPolicy: Retain |
| 44 | accessMode: ReadWriteOnce |
| 45 | size: 10Mi |
| 46 | mountPath: /dockerdata-nfs |
| 47 | mountSubPath: sshsm/distcenter/data |
| 48 | |
| 49 | ingress: |
| 50 | enabled: false |
| 51 | |
| 52 | # Configure resource requests and limits |
| 53 | flavor: small |
| 54 | resources: |
| 55 | small: |
| 56 | limits: |
Sylvain Desbureaux | c10829f | 2019-11-29 14:43:58 +0100 | [diff] [blame] | 57 | cpu: 20m |
| 58 | memory: 50Mi |
Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 59 | requests: |
| 60 | cpu: 10m |
| 61 | memory: 10Mi |
| 62 | large: |
| 63 | limits: |
| 64 | cpu: 400m |
| 65 | memory: 1Gi |
| 66 | requests: |
| 67 | cpu: 10m |
| 68 | memory: 100Mi |
| 69 | unlimited: {} |