Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 1 | # Copyright © 2018 AT&T, Amdocs, Bell Canada Intellectual Property. All rights reserved. |
| 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 | ################################################################# |
| 17 | # Global configuration defaults. |
| 18 | ################################################################# |
| 19 | global: |
| 20 | nodePortPrefix: 302 |
| 21 | nodePortPrefixExt: 304 |
| 22 | repository: nexus3.onap.org:10001 |
| 23 | |
| 24 | # readiness check |
| 25 | readinessRepository: oomk8s |
| 26 | readinessImage: readiness-check:2.0.0 |
| 27 | |
| 28 | # logging agent |
| 29 | loggingRepository: docker.elastic.co |
| 30 | loggingImage: beats/filebeat:5.5.0 |
| 31 | |
| 32 | ################################################################# |
| 33 | # Application configuration defaults. |
| 34 | ################################################################# |
| 35 | # application image |
| 36 | repository: nexus3.onap.org:10001 |
| 37 | image: library/tomcat:8.5 |
| 38 | pullPolicy: Always |
Gary Wu | 72901cd | 2018-11-15 18:27:40 -0800 | [diff] [blame^] | 39 | warImage: onap/music/music:3.0.24 |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 40 | |
| 41 | # flag to enable debugging - application support required |
| 42 | debugEnabled: false |
| 43 | |
| 44 | # application configuration |
| 45 | config: |
| 46 | usernameCassandra: cassandra1 |
| 47 | passwordCassandra: cassandra1 |
| 48 | |
| 49 | # default number of instances |
| 50 | replicaCount: 3 |
| 51 | |
| 52 | job: |
| 53 | host: cassandra |
| 54 | port: 9042 |
| 55 | busybox: |
| 56 | image: library/busybox:latest |
| 57 | |
| 58 | nodeSelector: {} |
| 59 | |
| 60 | affinity: {} |
| 61 | |
| 62 | # probe configuration parameters |
| 63 | liveness: |
| 64 | initialDelaySeconds: 10 |
| 65 | periodSeconds: 10 |
| 66 | # necessary to disable liveness probe when setting breakpoints |
| 67 | # in debugger so K8s doesn't restart unresponsive container |
| 68 | enabled: true |
| 69 | |
| 70 | readiness: |
| 71 | initialDelaySeconds: 10 |
| 72 | periodSeconds: 10 |
| 73 | |
| 74 | service: |
| 75 | type: NodePort |
| 76 | name: music-tomcat |
| 77 | externalPort: 8080 |
| 78 | internalPort: 8080 |
| 79 | nodePort: 76 |
| 80 | portName: tomcat |
| 81 | ingress: |
| 82 | enabled: false |
| 83 | |
| 84 | #resources: {} |
| 85 | resources: |
| 86 | limits: |
| 87 | cpu: 2 |
| 88 | memory: 2Gi |
| 89 | requests: |
| 90 | cpu: 2 |
| 91 | memory: 1Gi |
| 92 | |
| 93 | |
| 94 | properties: |
| 95 | zookeeperHost: zookeeper |
| 96 | cassandraHost: music-cassandra |
| 97 | cassandraUser: nelson24 |
| 98 | cassandraPassword: nelson24 |
| 99 | |
| 100 | # Admin API |
| 101 | # ONAP AAF |
| 102 | aafAdminUrl: |
| 103 | |