blob: 665d891c83543ca6e56cbf8381269652a97468d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
catalogNotificationsConfig:
# catalog backend protocol
catalogBeProtocol: {{ if .Values.global.disableHttp }}https{{- else }}http{{- end }}
catalogBeHttpPort: {{ (.Values.global.BE).http_port }}
catalogBeSslPort: {{ (.Values.global.BE).https_port }}
catalogBeFqdn: sdc-be.{{ include "common.namespace" . }}
# do not remove the "" from catalog_notification_url. it is escaping % characters coming from AUTO.json
catalogNotificationUrl: {{ .Values.ONBOARDING_BE.catalog_notification_url | quote }}
notifications:
pollingIntervalMsec: 2000
selectionSize: 100
beHost: sdc-onboarding-be.{{ include "common.namespace" . }}
beHttpPort: {{ .Values.ONBOARDING_BE.http_port }}
cassandraConfig:
cassandraHosts: [ {{ .Values.global.sdc_cassandra.serviceName }}.{{ include "common.namespace" . }} ]
cassandraPort: {{ .Values.cassandra.cassandra_port }}
localDataCenter: {{ .Values.global.sdc_cassandra.dataCenter }}
reconnectTimeout: 30000
socketReadTimeout: {{ .Values.cassandra.socket_read_timeout }}
socketConnectTimeout: {{ .Values.cassandra.socket_connect_timeout }}
authenticate: true
username: {{ .Values.cassandra.cassandra_user }}
password: {{ .Values.cassandra.cassandra_password }}
ssl: {{ .Values.config.cassandraSslEnabled }}
truststorePath: {{ .Values.JETTY_BASE }}/etc/truststore
truststorePassword: {{ .Values.cassandra.truststore_password }}
authCookie:
securityKey: MlB1WHFpSHNVTWdJZU1PcQ==
maxSessionTimeOut: 86400000
sessionIdleTimeOut: 3600000
cookieName: "AuthenticationCookie"
path: /
domain: ""
isHttpOnly: true
# redirect variable name from portal.properties file
redirectURL: "redirect_url"
excludedUrls: [ '/.*' ]
onboardingExcludedUrls: [ '/.*' ]
basicAuth:
enabled: {{ .Values.basic_auth.enabled }}
userName: {{ .Values.basic_auth.user_name }}
userPass: {{ .Values.basic_auth.user_pass }}
excludedUrls: "/v1.0/healthcheck"
zipValidation:
ignoreManifest: false
externalCsarStore:
storageType: NONE # NONE, MINIO
endpoint:
host: 127.0.0.1
port: 9000
secure: false
credentials:
accessKey: "login"
secretKey: "password"
foldersToStrip:
- Files/images
sizeLimit: 10000000
thresholdEntries: 10000
tempPath: "/home/onap/temp/"
uploadPartSize: 200000000
#Space separated list of permitted ancestors
permittedAncestors: {{ .Values.permittedAncestors | join " " }}
# Comma separated list of excluded URLs by the DataValidatorFilter
dataValidatorFilterExcludedUrls: "/healthCheck,/followed,/authorize"
|