Merge "Update bblueprint processor props"
[oom.git] / kubernetes / aaf / values.yaml
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
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.0
22   ubuntuInitRepository: registry.hub.docker.com
23   ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
24   persistence:
25     enabled: true
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
36 #################################################################
37 # Application configuration defaults.
38 #################################################################
39 repository: nexus3.onap.org:10001
40 aaf_config:
41   image: onap/aaf/aaf_config:2.1.2-SNAPSHOT
42
43 flavor: small
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
63 ingress:
64   enabled: false
65
66 ## Persist data to a persitent volume
67 persistence:
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"
84
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"
94
95 resources: {}