Michael Arrastia | 66b071a | 2018-03-29 14:53:40 +0100 | [diff] [blame] | 1 | # Copyright © 2018 Amdocs, AT&T |
toshrajbhardwaj | 84d73b1 | 2018-08-06 07:35:14 +0000 | [diff] [blame] | 2 | # Modifications Copyright © 2018 Bell Canada |
Michael Arrastia | 66b071a | 2018-03-29 14:53:40 +0100 | [diff] [blame] | 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | ################################################################# |
| 17 | # Global configuration defaults. |
| 18 | ################################################################# |
| 19 | global: |
BorislavG | f2b4966 | 2018-04-15 11:55:39 +0000 | [diff] [blame] | 20 | readinessImage: readiness-check:2.0.0 |
Michael Arrastia | 66b071a | 2018-03-29 14:53:40 +0100 | [diff] [blame] | 21 | loggingImage: beats/filebeat:5.5.0 |
| 22 | |
| 23 | ################################################################# |
| 24 | # Application configuration defaults. |
| 25 | ################################################################# |
| 26 | |
| 27 | # application image |
Gary Wu | 9d8eefc | 2018-10-18 09:48:31 -0700 | [diff] [blame^] | 28 | image: onap/babel:1.3.0 |
Michael Arrastia | 66b071a | 2018-03-29 14:53:40 +0100 | [diff] [blame] | 29 | |
rajeshkalai | 47c1de3 | 2018-09-20 06:36:28 -0400 | [diff] [blame] | 30 | flavor: small |
| 31 | |
Michael Arrastia | 66b071a | 2018-03-29 14:53:40 +0100 | [diff] [blame] | 32 | # application configuration |
| 33 | config: |
Jimmy Forsyth | b95074b | 2018-05-01 16:03:43 -0400 | [diff] [blame] | 34 | keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
| 35 | keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
Michael Arrastia | 66b071a | 2018-03-29 14:53:40 +0100 | [diff] [blame] | 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 |
BorislavG | e750068 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 58 | portName: babel |
BorislavG | dd20705 | 2018-05-22 11:31:39 +0000 | [diff] [blame] | 59 | externalPort: 9516 |
Michael Arrastia | 66b071a | 2018-03-29 14:53:40 +0100 | [diff] [blame] | 60 | internalPort: 9516 |
| 61 | nodePort: 79 |
| 62 | |
| 63 | ingress: |
| 64 | enabled: false |
| 65 | |
rajeshkalai | 47c1de3 | 2018-09-20 06:36:28 -0400 | [diff] [blame] | 66 | resources: |
| 67 | small: |
| 68 | limits: |
| 69 | cpu: 2 |
| 70 | memory: 4Gi |
| 71 | requests: |
| 72 | cpu: 1 |
| 73 | memory: 2Gi |
| 74 | large: |
| 75 | limits: |
| 76 | cpu: 4 |
| 77 | memory: 8Gi |
| 78 | requests: |
| 79 | cpu: 4 |
| 80 | memory: 8Gi |
Mandeep Khinda | 9a46bf3 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 81 | unlimited: {} |