blob: 4cc69c264b34de8736245c5f9d2c994e0aab15dd [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
Mandeep Khinda60d36d42018-09-24 15:15:48 +000024 persistence:
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000025 enabled: true
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000026
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
kj52dfb132018-03-27 15:50:39 +030036#################################################################
37# Application configuration defaults.
38#################################################################
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000039repository: nexus3.onap.org:10001
40aaf_config:
41 image: onap/aaf/aaf_config:2.1.2-SNAPSHOT
kj52dfb132018-03-27 15:50:39 +030042
dsingh.27864a34bf2018-09-21 05:11:00 -040043flavor: small
kj52dfb132018-03-27 15:50:39 +030044# default number of instances
45replicaCount: 1
46
47nodeSelector: {}
48
49affinity: {}
50
51# probe configuration parameters
52liveness:
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
59readiness:
60 initialDelaySeconds: 10
61 periodSeconds: 10
62
kj52dfb132018-03-27 15:50:39 +030063ingress:
64 enabled: false
65
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000066## Persist data to a persitent volume
67persistence:
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000068 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 Raghuwanshiafb1e2a2018-05-03 12:15:03 +000084
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000085aaf-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 Raghuwanshiafb1e2a2018-05-03 12:15:03 +000094
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000095resources: {}