blob: 24351da9cb1250b63372de8c40e50f010714c9c6 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# 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
kj52dfb132018-03-27 15:50:39 +030015#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
kj52dfb132018-03-27 15:50:39 +030020 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000021 readinessImage: readiness-check:2.0.0
Mike Elliottb35b5802018-05-08 14:22:13 -040022 ubuntuInitRepository: registry.hub.docker.com
23 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
Gary Wu72901cd2018-11-15 18:27:40 -080024 configImage: onap/aaf/aaf_config:2.1.8
Mandeep Khinda60d36d42018-09-24 15:15:48 +000025 persistence:
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000026 enabled: true
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000027
28 cadi:
29 hostname: "aaf.onap"
30 cadi_latitude: "38.0"
31 cadi_longitude: "-72.0"
32 aaf_env: "DEV"
Instrumental378109d2018-10-16 20:40:41 -050033 cass_host: "aaf-cass.onap"
34 cadi_locator_as: "aaf-locate.onap"
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000035
kj52dfb132018-03-27 15:50:39 +030036#################################################################
37# Application configuration defaults.
38#################################################################
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000039repository: nexus3.onap.org:10001
kj52dfb132018-03-27 15:50:39 +030040
dsingh.27864a34bf2018-09-21 05:11:00 -040041flavor: small
kj52dfb132018-03-27 15:50:39 +030042# default number of instances
43replicaCount: 1
44
45nodeSelector: {}
46
47affinity: {}
48
49# probe configuration parameters
50liveness:
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
57readiness:
58 initialDelaySeconds: 10
59 periodSeconds: 10
60
kj52dfb132018-03-27 15:50:39 +030061ingress:
62 enabled: false
63
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000064## Persist data to a persitent volume
65persistence:
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000066 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 Raghuwanshiafb1e2a2018-05-03 12:15:03 +000082
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000083aaf-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 Raghuwanshiafb1e2a2018-05-03 12:15:03 +000092
Instrumental378109d2018-10-16 20:40:41 -050093resources: {}