vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
| 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 | |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 15 | ################################################################# |
| 16 | # Global configuration defaults. |
| 17 | ################################################################# |
| 18 | global: |
| 19 | nodePortPrefix: 302 |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 20 | readinessRepository: oomk8s |
BorislavG | 3d6f937 | 2018-04-15 11:55:39 +0000 | [diff] [blame] | 21 | readinessImage: readiness-check:2.0.0 |
Mike Elliott | b35b580 | 2018-05-08 14:22:13 -0400 | [diff] [blame] | 22 | ubuntuInitRepository: registry.hub.docker.com |
| 23 | ubuntuInitImage: oomk8s/ubuntu-init:2.0.0 |
Gary Wu | 72901cd | 2018-11-15 18:27:40 -0800 | [diff] [blame] | 24 | configImage: onap/aaf/aaf_config:2.1.8 |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 25 | persistence: |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 26 | enabled: true |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 27 | |
| 28 | cadi: |
| 29 | hostname: "aaf.onap" |
| 30 | cadi_latitude: "38.0" |
| 31 | cadi_longitude: "-72.0" |
| 32 | aaf_env: "DEV" |
Instrumental | 378109d | 2018-10-16 20:40:41 -0500 | [diff] [blame] | 33 | cass_host: "aaf-cass.onap" |
| 34 | cadi_locator_as: "aaf-locate.onap" |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 35 | |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 36 | ################################################################# |
| 37 | # Application configuration defaults. |
| 38 | ################################################################# |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 39 | repository: nexus3.onap.org:10001 |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 40 | |
dsingh.278 | 64a34bf | 2018-09-21 05:11:00 -0400 | [diff] [blame] | 41 | flavor: small |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 42 | # default number of instances |
| 43 | replicaCount: 1 |
| 44 | |
| 45 | nodeSelector: {} |
| 46 | |
| 47 | affinity: {} |
| 48 | |
| 49 | # probe configuration parameters |
| 50 | liveness: |
| 51 | initialDelaySeconds: 10 |
| 52 | periodSeconds: 10 |
| 53 | # necessary to disable liveness probe when setting breakpoints |
| 54 | # in debugger so K8s doesn't restart unresponsive container |
| 55 | enabled: true |
| 56 | |
| 57 | readiness: |
| 58 | initialDelaySeconds: 10 |
| 59 | periodSeconds: 10 |
| 60 | |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 61 | ingress: |
| 62 | enabled: false |
| 63 | |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 64 | ## Persist data to a persitent volume |
| 65 | persistence: |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 66 | mountPath: "/mnt/data/aaf" |
| 67 | enabled: true |
| 68 | config: |
| 69 | #existingClaim: |
| 70 | volumeReclaimPolicy: Retain |
| 71 | accessMode: ReadWriteMany |
| 72 | size: 2Gi |
| 73 | mountSubPath: "config" |
| 74 | storageClass: "manual" |
| 75 | logs: |
| 76 | #existingClaim: |
| 77 | volumeReclaimPolicy: Retain |
| 78 | accessMode: ReadWriteMany |
| 79 | size: 2Gi |
| 80 | mountSubPath: "logs" |
| 81 | storageClass: "manual" |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 82 | |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 83 | aaf-cs: |
| 84 | persistence: |
| 85 | #existingClaim: |
| 86 | mountPath: /dockerdata-nfs |
| 87 | mountSubPath: "cass" |
| 88 | volumeReclaimPolicy: Retain |
| 89 | accessMode: ReadWriteOnce |
| 90 | size: 10Gi |
| 91 | storageClass: "manual" |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 92 | |
Instrumental | 378109d | 2018-10-16 20:40:41 -0500 | [diff] [blame] | 93 | resources: {} |