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 |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 24 | persistence: |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 25 | enabled: true |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 26 | |
| 27 | cadi: |
| 28 | hostname: "aaf.onap" |
| 29 | cadi_latitude: "38.0" |
| 30 | cadi_longitude: "-72.0" |
| 31 | aaf_env: "DEV" |
| 32 | aaf_register_as: "aaf.onap" |
| 33 | cassandraServiceName: aaf-cass |
| 34 | locateServiceName: aaf-locate |
| 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 |
| 40 | aaf_config: |
| 41 | image: onap/aaf/aaf_config:2.1.2-SNAPSHOT |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 42 | |
dsingh.278 | 64a34bf | 2018-09-21 05:11:00 -0400 | [diff] [blame] | 43 | flavor: small |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 44 | # default number of instances |
| 45 | replicaCount: 1 |
| 46 | |
| 47 | nodeSelector: {} |
| 48 | |
| 49 | affinity: {} |
| 50 | |
| 51 | # probe configuration parameters |
| 52 | liveness: |
| 53 | initialDelaySeconds: 10 |
| 54 | periodSeconds: 10 |
| 55 | # necessary to disable liveness probe when setting breakpoints |
| 56 | # in debugger so K8s doesn't restart unresponsive container |
| 57 | enabled: true |
| 58 | |
| 59 | readiness: |
| 60 | initialDelaySeconds: 10 |
| 61 | periodSeconds: 10 |
| 62 | |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 63 | ingress: |
| 64 | enabled: false |
| 65 | |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 66 | ## Persist data to a persitent volume |
| 67 | persistence: |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 68 | mountPath: "/mnt/data/aaf" |
| 69 | enabled: true |
| 70 | config: |
| 71 | #existingClaim: |
| 72 | volumeReclaimPolicy: Retain |
| 73 | accessMode: ReadWriteMany |
| 74 | size: 2Gi |
| 75 | mountSubPath: "config" |
| 76 | storageClass: "manual" |
| 77 | logs: |
| 78 | #existingClaim: |
| 79 | volumeReclaimPolicy: Retain |
| 80 | accessMode: ReadWriteMany |
| 81 | size: 2Gi |
| 82 | mountSubPath: "logs" |
| 83 | storageClass: "manual" |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 84 | |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 85 | aaf-cs: |
| 86 | persistence: |
| 87 | #existingClaim: |
| 88 | mountPath: /dockerdata-nfs |
| 89 | mountSubPath: "cass" |
| 90 | volumeReclaimPolicy: Retain |
| 91 | accessMode: ReadWriteOnce |
| 92 | size: 10Gi |
| 93 | storageClass: "manual" |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 94 | |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 95 | resources: {} |