Merge "Fix AAI auth in SO"
[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   configImage: onap/aaf/aaf_config:2.1.6
25   persistence:
26     enabled: true
27
28   cadi:
29     hostname: "aaf.onap"
30     cadi_latitude: "38.0"
31     cadi_longitude: "-72.0"
32     aaf_env: "DEV"
33     cass_host: "aaf-cass.onap"
34     cadi_locator_as: "aaf-locate.onap"
35
36 #################################################################
37 # Application configuration defaults.
38 #################################################################
39 repository: nexus3.onap.org:10001
40
41 flavor: small
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
61 ingress:
62   enabled: false
63
64 ## Persist data to a persitent volume
65 persistence:
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"
82
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"
92
93 resources: {}