Merge "[UUI] Service Mesh Compliance for UUI"
[oom.git] / kubernetes / oof / components / oof-has / resources / config / conductor.conf
1 {{/*
2 # Copyright © 2017 Amdocs, Bell Canada
3 # Modifications Copyright © 2018 AT&T,VMware, Intel Corporation.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 */}}
17
18 [DEFAULT]
19
20 #
21 # From conductor
22 #
23
24 # Configuration file for WSGI definition of API. (string value)
25 api_paste_config = /usr/local/etc/conductor/api_paste.ini
26
27 # Music keyspace for content (string value)
28 #keyspace = conductor
29
30 # Delay time (Seconds) for MUSIC requests. Set it to 2 seconds by default.
31 # (integer value)
32 #delay_time = 2
33
34 # (boolean value)
35 #HPA_enabled = true
36
37 #
38 # From oslo.log
39 #
40
41 # If set to true, the logging level will be set to DEBUG instead of the default
42 # INFO level. (boolean value)
43 # Note: This option can be changed without restarting.
44 #debug = false
45 debug = true
46
47 # The name of a logging configuration file. This file is appended to any
48 # existing logging configuration files. For details about logging configuration
49 # files, see the Python logging module documentation. Note that when logging
50 # configuration files are used then all logging configuration is set in the
51 # configuration file and other logging configuration options are ignored (for
52 # example, logging_context_format_string). (string value)
53 # Note: This option can be changed without restarting.
54 # Deprecated group/name - [DEFAULT]/log_config
55 #log_config_append = <None>
56 log_config_append = /usr/local/bin/log.conf
57
58 # Defines the format string for %%(asctime)s in log records. Default:
59 # %(default)s . This option is ignored if log_config_append is set. (string
60 # value)
61 #log_date_format = %Y-%m-%d %H:%M:%S
62
63 # (Optional) Name of log file to send logging output to. If no default is set,
64 # logging will go to stderr as defined by use_stderr. This option is ignored if
65 # log_config_append is set. (string value)
66 # Deprecated group/name - [DEFAULT]/logfile
67 #log_file = <None>
68
69 # (Optional) The base directory used for relative log_file  paths. This option
70 # is ignored if log_config_append is set. (string value)
71 # Deprecated group/name - [DEFAULT]/logdir
72 #log_dir = <None>
73
74 # Uses logging handler designed to watch file system. When log file is moved or
75 # removed this handler will open a new log file with specified path
76 # instantaneously. It makes sense only if log_file option is specified and
77 # Linux platform is used. This option is ignored if log_config_append is set.
78 # (boolean value)
79 #watch_log_file = false
80
81 # Use syslog for logging. Existing syslog format is DEPRECATED and will be
82 # changed later to honor RFC5424. This option is ignored if log_config_append
83 # is set. (boolean value)
84 #use_syslog = false
85
86 # Enable journald for logging. If running in a systemd environment you may wish
87 # to enable journal support. Doing so will use the journal native protocol
88 # which includes structured metadata in addition to log messages.This option is
89 # ignored if log_config_append is set. (boolean value)
90 #use_journal = false
91
92 # Syslog facility to receive log lines. This option is ignored if
93 # log_config_append is set. (string value)
94 #syslog_log_facility = LOG_USER
95
96 # Use JSON formatting for logging. This option is ignored if log_config_append
97 # is set. (boolean value)
98 #use_json = false
99
100 # Log output to standard error. This option is ignored if log_config_append is
101 # set. (boolean value)
102 #use_stderr = false
103
104 # Format string to use for log messages with context. (string value)
105 #logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
106
107 # Format string to use for log messages when context is undefined. (string
108 # value)
109 #logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
110
111 # Additional data to append to log message when logging level for the message
112 # is DEBUG. (string value)
113 #logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
114
115 # Prefix each line of exception output with this format. (string value)
116 #logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
117
118 # Defines the format string for %(user_identity)s that is used in
119 # logging_context_format_string. (string value)
120 #logging_user_identity_format = %(user)s %(tenant)s %(domain)s %(user_domain)s %(project_domain)s
121
122 # List of package logging levels in logger=LEVEL pairs. This option is ignored
123 # if log_config_append is set. (list value)
124 #default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,oslo_messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN,taskflow=WARN,keystoneauth=WARN,oslo.cache=INFO,dogpile.core.dogpile=INFO
125
126 # Enables or disables publication of error events. (boolean value)
127 #publish_errors = false
128
129 # The format for an instance that is passed with the log message. (string
130 # value)
131 #instance_format = "[instance: %(uuid)s] "
132
133 # The format for an instance UUID that is passed with the log message. (string
134 # value)
135 #instance_uuid_format = "[instance: %(uuid)s] "
136
137 # Interval, number of seconds, of log rate limiting. (integer value)
138 #rate_limit_interval = 0
139
140 # Maximum number of logged messages per rate_limit_interval. (integer value)
141 #rate_limit_burst = 0
142
143 # Log level name used by rate limiting: CRITICAL, ERROR, INFO, WARNING, DEBUG
144 # or empty string. Logs with level greater or equal to rate_limit_except_level
145 # are not filtered. An empty string means that all levels are filtered. (string
146 # value)
147 #rate_limit_except_level = CRITICAL
148
149 # Enables or disables fatal status of deprecations. (boolean value)
150 #fatal_deprecations = false
151
152 [auth]
153 appkey = ""
154
155 [aaf_api]
156
157 #
158 # From conductor
159 #
160
161 # is_aaf_enabled. (boolean value)
162 is_aaf_enabled = {{ (eq "true" (include "common.needTLS" .)) | ternary true false }}
163
164 # aaf_cache_expiry_hrs. (integer value)
165 aaf_cache_expiry_hrs = 3
166
167 # aaf_url. (string value)
168 aaf_url = http{{ if (include "common.needTLS" .) }}s{{ end }}://{{.Values.config.aaf.serviceName}}:{{.Values.config.aaf.port}}/authz/perms/user/
169
170 # aaf_cert_file. (string value)
171 #aaf_cert_file = <None>
172
173 # aaf_cert_key_file. (string value)
174 #aaf_cert_key_file = <None>
175
176 # aaf_ca_bundle_file. (string value)
177 #aaf_ca_bundle_file =
178 aaf_ca_bundle_file = {{ if (include "common.needTLS" .) }}/usr/local/bin/AAF_RootCA.cer{{ end }}
179
180 # aaf_retries. (integer value)
181 #aaf_retries = 3
182
183 # aaf_timeout. (integer value)
184 #aaf_timeout = 100
185
186 # aaf_user_roles. (list value)
187 #aaf_permissions = {"type": "org.onap.oof.access","instance": "*","action": "*"}
188
189
190 [aaf_sms]
191
192 #
193 # From conductor
194 #
195
196 # is_enabled. (boolean value)
197 is_enabled = {{ (eq "true" (include "common.needTLS" .)) | ternary true false }}
198
199 # Base URL for SMS, up to and not including the version, and without a trailing
200 # slash. (string value)
201 aaf_sms_url = http{{ if (include "common.needTLS" .) }}s{{ end }}://{{.Values.config.sms.serviceName}}.{{ include "common.namespace" . }}:{{.Values.config.sms.port}}
202
203
204 # Timeout for SMS API Call (integer value)
205 #aaf_sms_timeout = 30
206
207 # Path to the cacert that will be used to verify If this is None, verify will
208 # be False and the server certis not verified by the client. (string value)
209 #aaf_ca_certs = AAF_RootCA.cer
210 aaf_ca_certs = /usr/local/bin/AAF_RootCA.cer
211
212 # Domain UUID - A unique UUID generated when the domainfor HAS is created by
213 # administrator during deployment (string value)
214 #secret_domain = has
215
216
217 [aai]
218
219 #
220 # From conductor
221 #
222
223 # Interval with which to refresh the local cache, in minutes. (integer value)
224 #cache_refresh_interval = 1440
225 cache_refresh_interval = 1
226
227 # Interval with which to refresh the local complex cache, in minutes. (integer
228 # value)
229 #complex_cache_refresh_interval = 1440
230 complex_cache_refresh_interval = 60
231
232 # Data Store table prefix. (string value)
233 #table_prefix = aai
234
235 # Base URL for A&AI, up to and not including the version, and without a
236 # trailing slash. (string value)
237 #server_url = https://{{.Values.config.aai.serviceName}}.{{ include "common.namespace" . }}:{{.Values.config.aai.port}}/aai
238 server_url = http{{ if (include "common.needTLS" .) }}s{{ end }}://{{.Values.config.aai.serviceName}}.{{ include "common.namespace" . }}:{{ (eq "true" (include "common.needTLS" .)) | ternary .Values.config.aai.port .Values.config.aai.plainPort }}/aai
239
240 # Timeout for A&AI Rest Call (string value)
241 #aai_rest_timeout = 30
242
243 # Number of retry for A&AI Rest Call (string value)
244 #aai_retries = 3
245
246 # The version of A&AI in v# format. (string value)
247 server_url_version = v21
248
249 # SSL/TLS certificate file in pem format. This certificate must be registered
250 # with the A&AI endpoint. (string value)
251 certificate_file =
252
253 # Private Certificate Key file in pem format. (string value)
254 certificate_key_file =
255
256 # Certificate Authority Bundle file in pem format. Must contain the appropriate
257 # trust chain for the Certificate file. (string value)
258 #certificate_authority_bundle_file = certificate_authority_bundle.pem
259 certificate_authority_bundle_file = {{ if (include "common.needTLS" .) }}/usr/local/bin/AAF_RootCA.cer{{ end }}
260
261 # Username for AAI. (string value)
262 username = OOF
263
264 # Password for AAI. (string value)
265 password = OOF
266
267
268 [api]
269
270 #
271 # From conductor
272 #
273
274 # Toggle Pecan Debug Middleware. (boolean value)
275 #pecan_debug = false
276
277 # Default maximum number of items returned by API request. (integer value)
278 # Minimum value: 1
279 #default_api_return_limit = 100
280
281 [conductor_api]
282
283 #
284 # From conductor
285 #
286
287 # Base URL for plans. (string value)
288 #server_url =
289
290 # username for plans. (string value)
291 #username =
292 username = admin1
293
294 # password for plans. (string value)
295 #password =
296 password = plan.15
297
298 # auth toggling. (boolean value)
299 basic_auth_secure = true
300
301
302 [controller]
303
304 #
305 # From conductor
306 #
307
308 # Timeout for planning requests. Default value is 10. (integer value)
309 # Minimum value: 1
310 #timeout = 10
311 timeout = 200
312
313 # Maximum number of result sets to return. Default value is 1. (integer value)
314 # Minimum value: 1
315 #limit = 1
316
317 # Number of workers for controller service. Default value is 1. (integer value)
318 # Minimum value: 1
319 #workers = 1
320
321 # Set to True when controller will run in active-active mode. When set to
322 # False, controller will flush any abandoned messages at startup. The
323 # controller always restarts abandoned template translations at startup.
324 # (boolean value)
325 #concurrent = false
326 concurrent = true
327
328 # Time between checking for new plans. Default value is 1. (integer value)
329 # Minimum value: 1
330 #polling_interval = 1
331
332 # (integer value)
333 # Minimum value: 1
334 #max_translation_counter = 1
335
336 # (string value)
337 opt_schema_file = /opt/has/conductor/etc/conductor/opt_schema.json
338
339 [data]
340
341 #
342 # From conductor
343 #
344
345 # Number of workers for data service. Default value is 1. (integer value)
346 # Minimum value: 1
347 #workers = 1
348
349 # Set to True when data will run in active-active mode. When set to False, data
350 # will flush any abandoned messages at startup. (boolean value)
351 #concurrent = false
352 concurrent = true
353
354 # Default value is -8000, which is the diameter of the earth. The distance
355 # cannot larger than this value (floating point value)
356 #existing_placement_cost = -8000.0
357
358 # (floating point value)
359 #cloud_candidate_cost = 2.0
360
361 # (floating point value)
362 #service_candidate_cost = 1.0
363
364
365 [inventory_provider]
366
367 #
368 # From conductor
369 #
370
371 # Extensions list to use (list value)
372 extensions = aai,generator
373
374
375 [messaging_server]
376
377 #
378 # From conductor
379 #
380
381 # Music keyspace for messages (string value)
382 #keyspace = conductor_rpc
383
384 # Wait interval while checking for a message response. Default value is 1
385 # second. (integer value)
386 # Minimum value: 1
387 #check_interval = 1
388
389 # Overall message response timeout. Default value is 120 seconds. (integer
390 # value)
391 # Minimum value: 1
392 #response_timeout = 120
393
394 # Timeout for detecting a VM is down, and other VMs can pick the plan up.
395 # Default value is 5 minutes. (integer value) (integer value)
396 # Minimum value: 1
397 timeout = 300
398
399 # Number of workers for messaging service. Default value is 1. (integer value)
400 # Minimum value: 1
401 #workers = 1
402
403 # Time between checking for new messages. Default value is 1. (integer value)
404 # Minimum value: 1
405 #polling_interval = 1
406
407 # Log debug messages. Default value is False. (boolean value)
408 #debug = false
409
410
411 [multicloud]
412
413 #
414 # From conductor
415 #
416
417 # Base URL for Multicloud without a trailing slash. (string value)
418 #server_url = http://msb.onap.org/api/multicloud
419 server_url = http://{{.Values.config.msb.serviceName}}.{{ include "common.namespace" . }}:{{.Values.config.msb.port}}/api/multicloud
420
421 # Timeout for Multicloud Rest Call (string value)
422 #multicloud_rest_timeout = 30
423
424 # Number of retry for Multicloud Rest Call (string value)
425 #multicloud_retries = 3
426
427 # The version of Multicloud API. (string value)
428 #server_url_version = v0
429
430
431 [db_options]
432
433 # db_backend to use
434 db_backend = {{.Values.config.dbBackend}}
435
436 # Use music mock api
437 music_mock = False
438
439
440 [etcd_api]
441
442 # host/ip address of etcd server
443 host = {{.Values.config.etcd.serviceName}}.{{ include "common.namespace" . }}
444
445 # port of etcd server
446 port = {{.Values.config.etcd.port}}
447
448 # username for etcd authentication
449 username =
450
451 # password for etcd authentication
452 password =
453
454
455 [music_api]
456
457 #
458 # From conductor
459 #
460
461 # Base URL for Music REST API without a trailing slash. (string value)
462 #server_url = http://oof-has-music:8080/MUSIC/rest/v2
463 server_url = https://{{.Values.config.music.serviceName}}.{{ include "common.namespace" . }}:{{.Values.config.music.port}}/MUSIC/rest/v2
464 version = v2
465
466 # DEPRECATED: List of hostnames (round-robin access) (list value)
467 # This option is deprecated for removal.
468 # Its value may be silently ignored in the future.
469 # Reason: Use server_url instead
470 #hostnames = <None>
471
472 # DEPRECATED: Port (integer value)
473 # This option is deprecated for removal.
474 # Its value may be silently ignored in the future.
475 # Reason: Use server_url instead
476 #port = <None>
477
478 # DEPRECATED: Path (string value)
479 # This option is deprecated for removal.
480 # Its value may be silently ignored in the future.
481 # Reason: Use server_url instead
482 #path = <None>
483
484 # Socket connection timeout (floating point value)
485 #connect_timeout = 3.05
486
487 # Socket read timeout (floating point value)
488 #read_timeout = 12.05
489
490 # Lock timeout (integer value)
491 #lock_timeout = 10
492
493 # Replication factor (integer value)
494 #replication_factor = 1
495 replication_factor = 1
496
497 # Use mock API (boolean value)
498 #mock = false
499
500 # (string value)
501 #music_topology = SimpleStrategy
502
503 # Name of the first data center (string value)
504 #first_datacenter_name = <None>
505
506 # Number of replicas in first data center (integer value)
507 #first_datacenter_replicas = <None>
508
509 # Name of the second data center (string value)
510 #second_datacenter_name = <None>
511
512 # Number of replicas in second data center (integer value)
513 #second_datacenter_replicas = <None>
514
515 # Name of the third data center (string value)
516 #third_datacenter_name = <None>
517
518 # Number of replicas in third data center (integer value)
519 #third_datacenter_replicas = <None>
520
521 # new or old version (boolean value)
522 #music_new_version = <None>
523 music_new_version = True
524
525 # for version (string value)
526 #music_version = <None>
527 music_version = "3.2.40"
528
529 # username value that used for creating basic authorization header (string
530 # value)
531 #aafuser = <None>
532 aafuser = conductor
533
534 # password value that used for creating basic authorization header (string
535 # value)
536 #aafpass = <None>
537 aafpass = c0nduct0r
538
539 # AAF namespace field used in MUSIC request header (string value)
540 #aafns = <None>
541 aafns = conductor
542
543 # Enabling HTTPs mode (boolean value)
544 enable_https_mode = True
545
546 # Certificate Authority Bundle file in pem format. Must contain the appropriate
547 # trust chain for the Certificate file. (string value)
548 certificate_authority_bundle_file = /usr/local/bin/AAF_RootCA.cer
549
550
551 [prometheus]
552
553 #
554 # From conductor
555 #
556
557 # Prometheus Metrics Endpoint (list value)
558 #metrics_port = 8000,8001,8002,8003,8004
559
560
561 [reservation]
562
563 #
564 # From conductor
565 #
566
567 # Number of workers for reservation service. Default value is 1. (integer
568 # value)
569 # Minimum value: 1
570 #workers = 1
571
572 # Number of times reservation/release should be attempted. (integer value)
573 #reserve_retries = 1
574
575 # Timeout for detecting a VM is down, and other VMs can pick the plan up and
576 # resereve. Default value is 600 seconds. (integer value) (integer value)
577 # Minimum value: 1
578 #timeout = 600
579
580 # Set to True when reservation will run in active-active mode. When set to
581 # False, reservation will restart any orphaned reserving requests at startup.
582 # (boolean value)
583 #concurrent = false
584 concurrent = true
585
586 # (integer value)
587 # Minimum value: 1
588 #max_reservation_counter = 1
589
590
591 [sdnc]
592
593 #
594 # From conductor
595 #
596
597 # Interval with which to refresh the local cache, in minutes. (integer value)
598 #cache_refresh_interval = 1440
599
600 # Data Store table prefix. (string value)
601 #table_prefix = sdnc
602
603 # Base URL for SDN-C, up to and including the version. (string value)
604 server_url = https://controller:8443/restconf/
605
606 # Basic Authentication Username (string value)
607 #username = <None>
608 username = admin
609
610 # Basic Authentication Password (string value)
611 #password = <None>
612 password = Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
613
614 # Timeout for SDNC Rest Call (string value)
615 #sdnc_rest_timeout = 30
616
617 # Retry Numbers for SDNC Rest Call (string value)
618 #sdnc_retries = 3
619
620 [service_controller]
621
622 #
623 # From conductor
624 #
625
626 # Extensions list to use (list value)
627 #extensions = sdnc
628
629
630 [solver]
631
632 #
633 # From conductor
634 #
635
636 # Number of workers for solver service. Default value is 1. (integer value)
637 # Minimum value: 1
638 #workers = 1
639
640 # The timeout value for solver service. Default value is 480 seconds. (integer
641 # value)
642 # Minimum value: 1
643 #solver_timeout = 480
644
645 # Set to True when solver will run in active-active mode. When set to False,
646 # solver will restart any orphaned solving requests at startup. (boolean value)
647 #concurrent = false
648 concurrent = true
649
650 # Timeout for detecting a VM is down, and other VMs can pick the plan up. This
651 # value should be larger than solver_timeoutDefault value is 10 minutes.
652 # (integer value) (integer value)
653 # Minimum value: 1
654 #timeout = 600
655
656 # (integer value)
657 # Minimum value: 1
658 #max_solver_counter = 1
659
660
661 [vim_controller]
662
663 #
664 # From conductor
665 #
666
667 # Extensions list to use (list value)
668 #extensions = multicloud
669
670
671 [sdc]
672
673 #
674 # From conductor
675 #
676
677 # Data Store table prefix. (string value)
678 #table_prefix = sdc
679
680 # Base URL for SDC, up to and not including the version, and without a
681 # trailing slash. (string value)
682 #server_url = https://controller:8443/sdc
683 #server_url = https://{{.Values.config.sdc.serviceName}}.{{ include "common.namespace" . }}:{{.Values.config.sdc.port}}/sdc
684 server_url = http{{ if (include "common.needTLS" .) }}s{{ end }}://{{.Values.config.sdc.serviceName}}.{{ include "common.namespace" . }}:{{ (eq "true" (include "common.needTLS" .)) | ternary .Values.config.sdc.port .Values.config.sdc.plainPort }}/sdc
685
686 # Timeout for SDC Rest Call (string value)
687 #sdc_rest_timeout = 30
688
689 # Number of retry for SDC Rest Call (string value)
690 #sdc_retries = 3
691
692 # The version of A&AI in v# format. (string value)
693 server_url_version = v1
694
695 # SSL/TLS certificate file in pem format. This certificate must be registered
696 # with the SDC endpoint. (string value)
697 #certificate_file = certificate.pem
698 certificate_file =
699
700 # Private Certificate Key file in pem format. (string value)
701 #certificate_key_file = certificate_key.pem
702 certificate_key_file =
703
704 # Certificate Authority Bundle file in pem format. Must contain the appropriate
705 # trust chain for the Certificate file. (string value)
706 #certificate_authority_bundle_file = certificate_authority_bundle.pem
707 certificate_authority_bundle_file = {{ if (include "common.needTLS" .) }}/usr/local/bin/AAF_RootCA.cer{{ end }}
708
709 # Username for SDC. (string value)
710 #username =
711
712 # Password for SDC. (string value)
713 #password =
714
715 temp_path = "/tmp/nsttemplates"
716
717
718 [cps]
719
720 #
721 # From conductor
722 #
723
724 # Data Store table prefix. (string value)
725 #table_prefix = cps
726
727 # Base URL for CPS, up to and not including the version, and without a
728 # trailing slash. (string value)
729 #yet to be finalized
730 #server_url = https://cps.api.simpledemo.onap.org:8443/cps
731 server_url=http://{{.Values.config.cps.serviceName}}.{{ include "common.namespace" . }}:{{.Values.config.cps.port}}/
732
733 # Timeout for CPS Rest Call (string value)
734 #cps_rest_timeout = 30
735
736 # Number of retry for CPS Rest Call (string value)
737 #cps_retries = 3
738
739
740 # SSL/TLS certificate file in pem format. This certificate must be registered
741 # with the CPS endpoint. (string value)
742 #certificate_file = certificate.pem
743 certificate_file =
744
745 # Private Certificate Key file in pem format. (string value)
746 #certificate_key_file = certificate_key.pem
747 certificate_key_file =
748
749 # Certificate Authority Bundle file in pem format. Must contain the appropriate
750 # trust chain for the Certificate file. (string value)
751 #certificate_authority_bundle_file = certificate_authority_bundle.pem
752 certificate_authority_bundle_file = {{ if (include "common.needTLS" .) }}/usr/local/bin/AAF_RootCA.cer{{ end }}
753
754 # Username for CPS. (string value)
755 #username =
756
757 # Password for CPS. (string value)
758 #password =
759
760 get_ta_list_url = "/api/v1/execute/ran-coverage-area/get_ta_list"
761
762 [dcae]
763
764 #
765 # From conductor
766 #
767 #
768 # Data Store table prefix. (string value)
769 #table_prefix = dcae
770
771 # Base URL for DCAE, up to and not including the version, and without a
772 # trailing slash. (string value)
773 server_url = http://{{.Values.config.dcae.service}}.{{ include "common.namespace" . }}:{{.Values.config.dcae.port}}
774
775 # Timeout for DCAE Rest Call (string value)
776 #dcae_rest_timeout = 30
777
778 # Number of retry for DCAE Rest Call (string value)
779 #dcae_retries = 3
780
781 # The version of A&AI in v# format. (string value)
782 server_url_version = v1
783
784 # SSL/TLS certificate file in pem format. This certificate must be registered
785 # with the SDC endpoint. (string value)
786 #certificate_file = certificate.pem
787 certificate_file =
788
789 # Private Certificate Key file in pem format. (string value)
790 #certificate_key_file = certificate_key.pem
791 certificate_key_file =
792
793 # Certificate Authority Bundle file in pem format. Must contain the appropriate
794 # trust chain for the Certificate file. (string value)
795 #certificate_authority_bundle_file = certificate_authority_bundle.pem
796 certificate_authority_bundle_file = {{ if (include "common.needTLS" .) }}/usr/local/bin/AAF_RootCA.cer{{ end }}
797
798 # Username for DCAE. (string value)
799 #username =
800
801 # Password for DCAE. (string value)
802 #password =
803
804 get_slice_config_url = "/api/v1/slices-config"