Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 1 | # Copyright © 2018 Amdocs, AT&T |
| 2 | # Modifications Copyright © 2018 Bell Canada |
Sylvain Desbureaux | 6212bb2 | 2021-01-18 11:43:33 +0100 | [diff] [blame] | 3 | # Modifications Copyright © 2020, 2021 Orange |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
| 17 | ################################################################# |
| 18 | # Global configuration defaults. |
| 19 | ################################################################# |
Sylvain Desbureaux | 6212bb2 | 2021-01-18 11:43:33 +0100 | [diff] [blame] | 20 | global: {} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 21 | |
| 22 | ################################################################# |
| 23 | # Application configuration defaults. |
| 24 | ################################################################# |
| 25 | |
| 26 | # application image |
| 27 | image: onap/babel:1.7.1 |
| 28 | |
| 29 | flavor: small |
| 30 | flavorOverride: small |
| 31 | |
| 32 | # application configuration |
| 33 | config: |
| 34 | keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
| 35 | keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
| 36 | |
| 37 | # default number of instances |
| 38 | replicaCount: 1 |
| 39 | |
| 40 | nodeSelector: {} |
| 41 | |
| 42 | affinity: {} |
| 43 | |
| 44 | # probe configuration parameters |
| 45 | liveness: |
| 46 | initialDelaySeconds: 10 |
| 47 | periodSeconds: 10 |
| 48 | # necessary to disable liveness probe when setting breakpoints |
| 49 | # in debugger so K8s doesn't restart unresponsive container |
| 50 | enabled: false |
| 51 | |
| 52 | readiness: |
| 53 | initialDelaySeconds: 10 |
| 54 | periodSeconds: 10 |
| 55 | |
| 56 | service: |
| 57 | type: NodePort |
| 58 | portName: babel |
| 59 | externalPort: 9516 |
| 60 | internalPort: 9516 |
| 61 | nodePort: 79 |
| 62 | |
| 63 | ingress: |
| 64 | enabled: false |
| 65 | service: |
| 66 | - baseaddr: "aaibabel" |
| 67 | name: "aai-babel" |
| 68 | port: 9516 |
| 69 | config: |
| 70 | ssl: "redirect" |
| 71 | |
| 72 | resources: |
| 73 | small: |
| 74 | limits: |
| 75 | cpu: 2 |
| 76 | memory: 4Gi |
| 77 | requests: |
| 78 | cpu: 0.5 |
| 79 | memory: 1Gi |
| 80 | large: |
| 81 | limits: |
| 82 | cpu: 4 |
| 83 | memory: 8Gi |
| 84 | requests: |
| 85 | cpu: 2 |
| 86 | memory: 2Gi |
| 87 | unlimited: {} |