Daniel Silverthorn | b5d7ad8 | 2018-03-08 10:02:21 -0500 | [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 |
Daniel Silverthorn | b5d7ad8 | 2018-03-08 10:02:21 -0500 | [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 |
Daniel Silverthorn | b5d7ad8 | 2018-03-08 10:02:21 -0500 | [diff] [blame] | 21 | loggingImage: beats/filebeat:5.5.0 |
| 22 | |
| 23 | ################################################################# |
| 24 | # Application configuration defaults. |
| 25 | ################################################################# |
| 26 | |
| 27 | # application image |
Jimmy Forsyth | 6067745 | 2018-05-30 17:40:40 -0400 | [diff] [blame] | 28 | image: onap/champ:1.2.3 |
Daniel Silverthorn | 3102326 | 2018-03-28 19:18:19 +0000 | [diff] [blame] | 29 | |
| 30 | # application configuration |
| 31 | config: |
| 32 | keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
| 33 | keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
Daniel Silverthorn | b5d7ad8 | 2018-03-08 10:02:21 -0500 | [diff] [blame] | 34 | |
| 35 | # default number of instances |
| 36 | replicaCount: 1 |
| 37 | |
| 38 | nodeSelector: {} |
| 39 | |
| 40 | affinity: {} |
| 41 | |
| 42 | # probe configuration parameters |
| 43 | liveness: |
| 44 | initialDelaySeconds: 10 |
| 45 | periodSeconds: 10 |
| 46 | # necessary to disable liveness probe when setting breakpoints |
| 47 | # in debugger so K8s doesn't restart unresponsive container |
| 48 | enabled: false |
| 49 | |
| 50 | readiness: |
| 51 | initialDelaySeconds: 10 |
| 52 | periodSeconds: 10 |
| 53 | |
| 54 | service: |
| 55 | type: NodePort |
BorislavG | dd20705 | 2018-05-22 11:31:39 +0000 | [diff] [blame] | 56 | portName: aai-champ |
Daniel Silverthorn | b5d7ad8 | 2018-03-08 10:02:21 -0500 | [diff] [blame] | 57 | internalPort: 9522 |
| 58 | nodePort: 78 |
| 59 | |
| 60 | ingress: |
| 61 | enabled: false |
| 62 | |
| 63 | resources: {} |