Merge "[DOC] Add a link to index"
[oom.git] / kubernetes / aaf / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications © 2020 AT&T
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   # Readiness image
22   readinessRepository: oomk8s
23   readinessImage: readiness-check:2.0.2
24   # Ubuntu Init image
25   ubuntuInitRepository: registry.hub.docker.com
26   ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
27   # Logging image
28   loggingRepository: docker.elastic.co
29   loggingImage: beats/filebeat:5.5.0
30   # BusyBox image
31   busyboxRepository: registry.hub.docker.com
32   busyboxImage: library/busybox:latest
33   persistence:
34     enabled: true
35   # Standard OOM
36   pullPolicy: "Always"
37   repository: "nexus3.onap.org:10001"
38
39   # Use Local
40   #pullPolicy: IfNotPresent
41   #repository: "nexus3.onap.org:10003"
42
43   aaf:
44     readiness: false
45     image: onap/aaf/aaf_core:2.1.20
46     aaf_env: "DEV"
47     public_fqdn: "aaf.osaaf.org"
48     aaf_release: "El Alto"
49   # DUBLIN ONLY - for M4 compatibility with Casablanca
50   #  aaf_locator_name: "public.%NS.%N"
51   #  aaf_locator_name_oom: "%NS.%N"
52   # EL ALTO and Beyond
53     aaf_locator_name: "%NS.%N"
54     aaf_locator_name_oom: "%CNS.%NS.%N"
55     cadi_latitude: "38.0"
56     cadi_longitude: "-72.0"
57     cadi_x509_issuers: "CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_7, OU=OSAAF, O=ONAP, C=US"
58
59     config:
60       image: onap/aaf/aaf_config:2.1.20
61     cass:
62       replicas: 1
63       image: onap/aaf/aaf_cass:2.1.20
64       fqdn: "aaf-cass"
65       cluster_name: "osaaf"
66       heap_new_size: "512M"
67       max_heap_size: "1024M"
68       storage_port: 7000
69       ssl_storage_port: 7001
70       native_trans_port: 9042
71       rpc_port: 9160
72       dc: "dc1"
73     service:
74       replicas: 1
75       fqdn: "aaf-service"
76       internal_port: 8100
77       public_port: 31110
78     locate:
79       replicas: 1
80       fqdn: "aaf-locate"
81       internal_port: 8095
82       public_port: 31111
83     oauth:
84       replicas: 1
85       fqdn: "aaf0oauth"
86       internal_port: 8140
87       public_port: 31112
88     gui:
89       replicas: 1
90       fqdn: "aaf-gui"
91       internal_port: 8200
92       public_port: 31113
93     cm:
94       replicas: 1
95       fqdn: "aaf-cm"
96       internal_port: 8150
97       public_port: 31114
98     fs:
99       replicas: 1
100       fqdn: "aaf-fs"
101       internal_port: 8096
102       public_port: 31115
103     hello:
104       replicas: 0
105 #     Note: as hello is a sample app, find values in charts/aaf-hello/values.yaml
106
107
108 #################################################################
109 # Application configuration defaults.
110 #################################################################
111
112 flavor: small
113 # default number of instances
114 replicaCount: 1
115
116 nodeSelector: {}
117
118 affinity: {}
119
120 # probe configuration parameters
121 liveness:
122   initialDelaySeconds: 350
123   periodSeconds: 10
124   # necessary to disable liveness probe when setting breakpoints
125   # in debugger so K8s doesn't restart unresponsive container
126   enabled: true
127
128 readiness:
129   initialDelaySeconds: 150
130   periodSeconds: 10
131
132 ingress:
133   enabled: false
134
135 ## Persist data to a persitent volume
136 persistence:
137   enabled: true
138   config:
139     #existingClaim:
140     volumeReclaimPolicy: Delete
141     accessMode: ReadWriteMany
142     size: 2Gi
143     mountPath: /dockerdata-nfs
144     mountSubPath: "config"
145   logs:
146     #existingClaim:
147     volumeReclaimPolicy: Retain
148     accessMode: ReadWriteMany
149     size: 2Gi
150     mountPath: "/mnt/data/aaf/logs"
151   status:
152     volumeReclaimPolicy: Delete
153     accessMode: ReadWriteMany
154     size: 2M
155     mountPath: /dockerdata-nfs
156     mountSubPath: "status"
157   cass:
158     #existingClaim:
159     volumeReclaimPolicy: Retain
160     accessMode: ReadWriteOnce
161     size: 10Gi
162     mountPath: /dockerdata-nfs
163     mountSubPath: "cass"
164
165
166 resources: {}