Michael Arrastia | f0b74b1 | 2018-08-21 13:36:27 +0100 | [diff] [blame] | 1 | # Copyright © 2018 Amdocs, AT&T |
| 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 | readinessImage: readiness-check:2.0.0 |
| 20 | loggingImage: beats/filebeat:5.5.0 |
| 21 | |
| 22 | ################################################################# |
| 23 | # Application configuration defaults. |
| 24 | ################################################################# |
| 25 | |
| 26 | # application image |
Ravi Geda | 8da0477 | 2019-01-09 16:54:14 +0000 | [diff] [blame^] | 27 | image: onap/spike:1.4-STAGING-latest |
rajeshkalai | 9fcfbce | 2018-09-20 06:36:28 -0400 | [diff] [blame] | 28 | flavor: small |
Michael Arrastia | f0b74b1 | 2018-08-21 13:36:27 +0100 | [diff] [blame] | 29 | # application configuration |
| 30 | config: |
| 31 | keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
| 32 | keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
| 33 | |
| 34 | # default number of instances |
| 35 | replicaCount: 1 |
| 36 | |
| 37 | nodeSelector: {} |
| 38 | |
| 39 | affinity: {} |
| 40 | |
| 41 | # probe configuration parameters |
| 42 | liveness: |
| 43 | initialDelaySeconds: 10 |
| 44 | periodSeconds: 10 |
| 45 | # necessary to disable liveness probe when setting breakpoints |
| 46 | # in debugger so K8s doesn't restart unresponsive container |
| 47 | enabled: false |
| 48 | |
| 49 | readiness: |
| 50 | initialDelaySeconds: 10 |
| 51 | periodSeconds: 10 |
| 52 | |
| 53 | service: |
| 54 | type: NodePort |
| 55 | portName: spike |
| 56 | externalPort: 9518 |
| 57 | internalPort: 9518 |
| 58 | nodePort: 39 |
| 59 | |
| 60 | ingress: |
| 61 | enabled: false |
| 62 | |
rajeshkalai | 9fcfbce | 2018-09-20 06:36:28 -0400 | [diff] [blame] | 63 | resources: |
| 64 | small: |
| 65 | limits: |
| 66 | cpu: 2 |
| 67 | memory: 4Gi |
| 68 | requests: |
jimmy | 297f59b | 2018-12-06 15:05:48 -0500 | [diff] [blame] | 69 | cpu: 0.5 |
| 70 | memory: 1Gi |
rajeshkalai | 9fcfbce | 2018-09-20 06:36:28 -0400 | [diff] [blame] | 71 | large: |
| 72 | limits: |
| 73 | cpu: 4 |
| 74 | memory: 8Gi |
| 75 | requests: |
jimmy | 297f59b | 2018-12-06 15:05:48 -0500 | [diff] [blame] | 76 | cpu: 1 |
| 77 | memory: 1536Mi |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 78 | unlimited: {} |
Michael Arrastia | f0b74b1 | 2018-08-21 13:36:27 +0100 | [diff] [blame] | 79 | |
| 80 | # XML bean configuration |
| 81 | event: |
| 82 | port: |
Michael Arrastia | 86cc273 | 2018-09-18 10:57:03 +0100 | [diff] [blame] | 83 | dmaap: 3905 |
| 84 | protocol: https |
Michael Arrastia | f0b74b1 | 2018-08-21 13:36:27 +0100 | [diff] [blame] | 85 | consumer: |
| 86 | topic: champRawEvents |
| 87 | publisher: |
| 88 | topic: spikeEvents |