blob: d382b80ba07ef0196834b73ca1c54e7751d9de2b [file] [log] [blame]
Sylvain Desbureaux70070412020-11-09 21:58:48 +01001# Copyright (c) 2017 Amdocs, Bell Canada
2# Modifications Copyright (c) 2018 AT&T
Sylvain Desbureaux5b651322020-12-07 15:34:15 +01003# Modifications Copyright (c) 2020 Nokia, Orange
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +01004# Modifications Copyright (c) 2021 Orange
Sylvain Desbureaux70070412020-11-09 21:58:48 +01005#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17
18# Default values for aai.
19# This is a YAML-formatted file.
20# Declare variables to be passed into your templates.
21global: # global defaults
22 nodePortPrefix: 302
23 repository: nexus3.onap.org:10001
24 dockerhubRepository: docker.io
25 busyboxImage: busybox
26
27 readinessImage: onap/oom/readiness:3.0.1
28
29 loggingRepository: docker.elastic.co
30 loggingImage: beats/filebeat:5.5.0
31
32 restartPolicy: Always
33
Sylvain Desbureaux70070412020-11-09 21:58:48 +010034 aafEnabled: true
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +010035 msbEnabled: true
Maciej Wereskid523d122021-09-21 11:22:13 +020036 centralizedLoggingEnabled: true
Sylvain Desbureaux70070412020-11-09 21:58:48 +010037
38 cassandra:
39 #This will instantiate AAI cassandra cluster, default:shared cassandra.
40 localCluster: false
41
42 #Service Name of the cassandra cluster to connect to.
43 #Override it to aai-cassandra if localCluster is enabled.
44 serviceName: cassandra
45
46 #This should be same as shared cassandra instance or if localCluster is enabled
47 #then it should be same as aai-cassandra replicaCount
48 replicas: 3
49
50 #Cassanara login details
51 username: cassandra
52 password: cassandra
53
54 aai:
55 serviceName: aai
56 babel:
57 serviceName: aai-babel
58 aaiElasticsearch:
59 serviceName: aai-elasticsearch
60 resources:
61 serviceName: aai-resources
62 sparkyBe:
63 serviceName: aai-sparky-be
64 dataRouter:
65 serviceName: aai-data-router
66 gizmo:
67 serviceName: aai-gizmo
68 modelloader:
69 serviceName: aai-modelloader
70 searchData:
71 serviceName: aai-search-data
72 traversal:
73 serviceName: aai-traversal
74 graphadmin:
75 serviceName: aai-graphadmin
76 spike:
77 serviceName: aai-spike
78
79 initContainers:
80 enabled: true
81 # Specifies a list of jobs to be run
82 jobs:
83 # When enabled, it will create the schema based on oxm and edge rules
84 createSchema:
85 enabled: true
86 # When enabled, it will create the widget models via REST API to haproxy
87 updateQueryData:
88 enabled: true
89 #migration using helm hooks
90 migration:
91 enabled: false
92 remoteCassandra:
93 enabled: false
94 storage:
95 backend: cassandra
96 hostname: 10.10.10.10
97 connectionTimeout: 100000
98 cacheSize: 1000000
99 keyConsistent: true
100
101 #If backend is cql or cassandra it should be keyspace name
102 #else backend is hbase it should be hbase table name
103 name: aaigraph
104
105 ## CQL driver specific properties for janusgraph
106 # cql:
107 # #Name of the Cassandra Cluster
108 # cluster: someclustername
109 # readConsistency: QUORUM
110 # writeConsistency: QUORUM
111 # replicationFactor: 3
112 # localConsistencyForSysOps: true
113
114 ## Cassandra driver specific properties for janusgraph
115 cassandra:
116 #Name of the Cassandra Cluster
117 clusterName: aai-cluster
118 localDataCenter: Pod lab
119 readConsistency: LOCAL_QUORUM
120 writeConsistency: LOCAL_QUORUM
121 replicationFactor: 3
122
123 #storage:
124 # backend: cassandra
125 # hostname: somehost1,somehost2,somehost3
126 # connectionTimeout: 100000
127 # cacheSize: 1000000
128 # clusterName: someClusterName
129 # localDataCenter: someDataCenter
130 # keyConsistent: true
131 # #If backend is cql or cassandra it should be keyspace name
132 # #else backend is hbase it should be hbase table name
133 # name: your_hbase_table_or_keyspace_name
134
135 ## CQL driver specific properties for janusgraph
136 # cql:
137 # #Name of the Cassandra Cluster
138 # cluster: someclustername
139 # readConsistency: QUORUM
140 # writeConsistency: QUORUM
141 # replicationFactor: 3
142 # localConsistencyForSysOps: true
143
144 ## Cassandra driver specific properties for janusgraph
145 # cassandra:
146 # #Name of the Cassandra Cluster
147 # cluster: someclustername
148 # readConsistency: LOCAL_QUORUM
149 # writeConsistency: LOCAL_QUORUM
150 # replicationFactor: 3
151
152
153 # Common configuration for resources traversal and graphadmin
154 config:
155 # User information for the admin user in container
156 userId: 1000
157 groupId: 1000
158
159 # Specifies that the cluster connected to a dynamic
160 # cluster being spinned up by kubernetes deployment
161 cluster:
162 cassandra:
163 dynamic: true
164
165 # If cluster.cassandra.dynamic is set to false
166 # Then the following configuration should be uncommented
167 # This is if you are planning to connect to a existing
168 # Cassandra cluster instead of doing the deployment
169 #storage:
170 # backend: cassandra
171 # hostname: somehost1,somehost2,somehost3
172 # connectionTimeout: 100000
173 # cacheSize: 1000000
174 # clusterName: someClusterName
175 # localDataCenter: someDataCenter
176 # keyConsistent: true
177 # # If backend is cql or cassandra it should be keyspace name
178 # # else backend is hbase it should be hbase table name
179 # name: your_hbase_table_or_keyspace_name
180
181 # # CQL driver specific properties for janusgraph
182 # cql:
183 # # Name of the Cassandra Cluster
184 # cluster: someclustername
185 # readConsistency: QUORUM
186 # writeConsistency: QUORUM
187 # replicationFactor: 3
188 # localConsistencyForSysOps: true
189
190 # # Cassandra driver specific properties for janusgraph
191 # cassandra:
192 # # Name of the Cassandra Cluster
193 # cluster: someclustername
194 # readConsistency: LOCAL_QUORUM
195 # writeConsistency: LOCAL_QUORUM
196 # replicationFactor: 3
197
198 # Specifies if the basic authorization is enabled
199 basic:
200 auth:
201 enabled: true
202 username: AAI
203 passwd: AAI
204
205 # Active spring profiles for the resources microservice
osk1146127fd7d82021-06-18 00:51:17 +0200206 # aaf-auth profile will be automatically set if aaf enabled is set to true
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100207 profiles:
osk1146127fd7d82021-06-18 00:51:17 +0200208 active: production,dmaap #,aaf-auth
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100209
210 # Notification event specific properties
211 notification:
212 eventType: AAI-EVENT
213 domain: dev
214
215 # Schema specific properties that include supported versions of api
216 schema:
217 # Specifies if the connection should be one way ssl, two way ssl or no auth
osk1146127fd7d82021-06-18 00:51:17 +0200218 # will be set to no-auth if tls is disabled
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100219 service:
220 client: one-way-ssl
221 # Specifies which translator to use if it has schema-service, then it will make a rest request to schema service
222 translator:
223 list: schema-service
224 source:
225 # Specifies which folder to take a look at
226 name: onap
227 uri:
228 # Base URI Path of the application
229 base:
230 path: /aai
231 version:
232 # Current version of the REST API
233 api:
wr148dcd3e6b72022-08-19 16:17:44 -0400234 default: v27
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100235 # Specifies which version the depth parameter is configurable
236 depth: v11
237 # List of all the supported versions of the API
wr148dcd3e6b72022-08-19 16:17:44 -0400238 list: v11,v12,v13,v14,v15,v16,v17,v18,v19,v20,v21,v22,v23,v24,v25,v26,v27
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100239 # Specifies from which version related link should appear
240 related:
241 link: v11
242 # Specifies from which version the app root change happened
243 app:
244 root: v11
245 # Specifies from which version the xml namespace changed
246 namespace:
247 change: v12
248 # Specifies from which version the edge label appeared in API
249 edge:
250 label: v12
251
252 # Keystore configuration password and filename
253 keystore:
254 filename: aai_keystore
Sylvain Desbureaux1e997192021-02-28 14:59:22 +0100255 passwd: OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0 # changeit
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100256
257 # Truststore configuration password and filename
258 truststore:
259 filename: aai_keystore
Sylvain Desbureaux1e997192021-02-28 14:59:22 +0100260 passwd: OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0 # changeit
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100261
262 # Specifies a list of files to be included in auth volume
263 auth:
264 files:
265 - aai_keystore
266
267 # Specifies which clients should always default to realtime graph connection
268 realtime:
269 clients: SDNC,MSO,SO,robot-ete
270
271 # Logback debug enabled
272 logback:
273 console:
274 # If enabled, container will print all logback to standard output
275 # This will make debugging much easier but it should only be done
276 # when debugging the issue and changed back as it can affect performance
277 # since when this is enabled, it prints a lot of information to console
278 enabled: false
279
david.mcweeneyc87dbc32022-11-23 12:59:04 +0000280 aaiSdcListenerKafkaUser: aai-sdc-list-user
281
Maciej Wereskid523d122021-09-21 11:22:13 +0200282aai-babel:
283 logConfigMapNamePrefix: '{{ include "common.release" . }}-aai'
284aai-graphadmin:
285 logConfigMapNamePrefix: '{{ include "common.release" . }}-aai'
286aai-modelloader:
287 logConfigMapNamePrefix: '{{ include "common.release" . }}-aai'
david.mcweeneyc87dbc32022-11-23 12:59:04 +0000288 config:
289 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.aaiSdcListenerKafkaUser }}'
Maciej Wereskid523d122021-09-21 11:22:13 +0200290aai-resources:
291 logConfigMapNamePrefix: '{{ include "common.release" . }}-aai'
292aai-schema-service:
293 logConfigMapNamePrefix: '{{ include "common.release" . }}-aai'
294aai-sparky-be:
295 logConfigMapNamePrefix: '{{ include "common.release" . }}-aai'
296aai-traversal:
297 logConfigMapNamePrefix: '{{ include "common.release" . }}-aai'
298
Sylvain Desbureaux87f49af2020-12-15 11:56:51 +0100299#################################################################
300# Certificate configuration
301#################################################################
302certInitializer:
303 nameOverride: aai-cert-initializer
304 aafDeployFqi: deployer@people.osaaf.org
305 aafDeployPass: demo123456!
306 # aafDeployCredsExternalSecret: some secret
307 fqdn: "aai"
308 app_ns: "org.osaaf.aaf"
309 fqi_namespace: "org.onap.aai"
310 fqi: "aai@aai.onap.org"
311 public_fqdn: "aaf.osaaf.org"
312 cadi_longitude: "0.0"
313 cadi_latitude: "0.0"
314 credsPath: /opt/app/osaaf/local
315 aaf_add_config: |
Sylvain Desbureaux87f49af2020-12-15 11:56:51 +0100316 echo "*** transform AAF certs into pem files"
317 mkdir -p {{ .Values.credsPath }}/certs
318 keytool -exportcert -rfc -file {{ .Values.credsPath }}/certs/cacert.pem \
319 -keystore {{ .Values.credsPath }}/{{ .Values.fqi_namespace }}.trust.jks \
320 -alias ca_local_0 \
321 -storepass $cadi_truststore_password
322 openssl pkcs12 -in {{ .Values.credsPath }}/{{ .Values.fqi_namespace }}.p12 \
323 -nokeys -out {{ .Values.credsPath }}/certs/cert.pem \
324 -passin pass:$cadi_keystore_password_p12 \
325 -passout pass:$cadi_keystore_password_p12
326 echo "*** generating needed file"
327 cat {{ .Values.credsPath }}/certs/cert.pem \
328 {{ .Values.credsPath }}/certs/cacert.pem \
329 {{ .Values.credsPath }}/{{ .Values.fqi_namespace }}.key \
330 > {{ .Values.credsPath }}/certs/fullchain.pem;
331 chown 1001 {{ .Values.credsPath }}/certs/*
332
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100333# application image
334dockerhubRepository: registry.hub.docker.com
leila8bd5bf32022-11-16 19:42:09 -0500335image: onap/aai-haproxy:1.9.5
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100336pullPolicy: Always
337
338flavor: small
339flavorOverride: small
340
341# flag to enable debugging - application support required
342debugEnabled: false
343
344# application configuration
345config:
346 logstashServiceName: log-ls
347 logstashPort: 5044
348
349# default number of instances
350replicaCount: 1
351
Rommel Pawar63db7162022-11-16 10:11:24 -0800352updateStrategy:
353 type: RollingUpdate
354 maxUnavailable: 0
355 maxSurge: 1
356
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100357nodeSelector: {}
358
359affinity: {}
360
Suresh Charanc1aa7582022-01-31 06:25:37 -0500361# HAProxy configuration to block HTTP requests to AAI based on configurable URL patterns
362haproxy:
leila8bd5bf32022-11-16 19:42:09 -0500363 initContainers:
364 resources:
365 memory: 100Mi
366 cpu: 50m
Suresh Charanc1aa7582022-01-31 06:25:37 -0500367 requestBlocking:
368 enabled: false
369 customConfigs: []
leila8bd5bf32022-11-16 19:42:09 -0500370 replicas:
371 aaiResources: 1
372 aaiTraversal: 1
Suresh Charanc1aa7582022-01-31 06:25:37 -0500373
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100374# probe configuration parameters
375liveness:
376 initialDelaySeconds: 10
377 periodSeconds: 10
378 # necessary to disable liveness probe when setting breakpoints
379 # in debugger so K8s doesn't restart unresponsive container
380 enabled: true
381
382#This section is used when localCluster is enabled. AAI will create its own cassandra cluster for its specific use.
383#Below command will instantiate the aai cassandra instances:
384#helm deploy demo local/onap --version=4.0.0 --namespace onap --set aai.enabled=true \
385# --set aai.global.cassandra.localCluster=true \
386# --set aai.global.cassandra.serviceName=aai-cassandra
387cassandra:
388 nameOverride: aai-cassandra
Andreas Geissler3072a892022-01-07 17:41:42 +0000389 serviceAccount:
390 nameOverride: aai-cassandra
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100391 replicaCount: 3
392 service:
393 name: aai-cassandra
394 persistence:
395 mountSubPath: aai/cassandra
396 enabled: true
397
398readiness:
399 initialDelaySeconds: 10
400 periodSeconds: 10
401
402service:
403 type: NodePort
osk1146127fd7d82021-06-18 00:51:17 +0200404 portName: http
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100405 externalPort: 8443
406 internalPort: 8443
407 nodePort: 33
osk1146127fd7d82021-06-18 00:51:17 +0200408 externalPlainPort: 80
409 internalPlainPort: 8080
410 nodeport: 33
leila46fb5802022-11-15 11:33:21 -0500411 aaiServiceClusterIp:
412 sessionAffinity: None
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100413
leila8bd5bf32022-11-16 19:42:09 -0500414metricsService:
415 type: ClusterIP
416 portName: prometheus
417 externalPort: 8448
418 internalPort: 8448
419
420metrics:
421 serviceMonitor:
422 enabled: false
423 targetPort: 8448
424 path: /metrics
425 basicAuth:
426 enabled: false
427
428 selector:
429 app: '{{ include "common.name" . }}-metrics'
430 chart: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}'
431 release: '{{ include "common.release" . }}'
432 heritage: '{{ .Release.Service }}'
433
434 relabelings: []
435
436 metricRelabelings: []
437
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100438ingress:
439 enabled: false
440 service:
Andreas Geissler51900a92022-08-03 13:10:35 +0200441 - baseaddr: "aai-api"
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100442 name: "aai"
443 port: 8443
Andreas Geissler51900a92022-08-03 13:10:35 +0200444 plain_port: 80
osk1146127fd7d82021-06-18 00:51:17 +0200445 config:
446 ssl: "redirect"
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100447
448resources:
449 small:
450 limits:
451 cpu: 2
452 memory: 4Gi
453 requests:
454 cpu: 1
455 memory: 1Gi
456 large:
457 limits:
458 cpu: 4
459 memory: 8Gi
460 requests:
461 cpu: 2
462 memory: 2Gi
463 unlimited: {}
farida azmyd8937332021-03-09 12:20:42 +0200464
465#Pods Service Account
466serviceAccount:
467 nameOverride: aai
468 roles:
469 - read