838a32334818f7daf171693996955ba7d02c5a7c
[sdc.git] /
1 catalogNotificationsConfig:
2     # catalog backend protocol
3     <% if node[:disableHttp] -%>
4     catalogBeProtocol: https
5     <% else %>
6     catalogBeProtocol: http
7     <% end -%>
8     catalogBeHttpPort: <%= @catalog_be_http_port %>
9     catalogBeSslPort: <%= @catalog_be_ssl_port %>
10     catalogBeFqdn: <%= @catalog_be_fqdn %>
11     # do not remove the "" from catalog_notification_url. it is escaping % characters coming from AUTO.json
12     catalogNotificationUrl: "<%= @catalog_notification_url %>"
13
14 notifications:
15     pollingIntervalMsec: 2000
16     selectionSize: 100
17     beHost: <%= @onboard_ip %>
18     beHttpPort: <%= @onboard_port %>
19
20 cassandraConfig:
21     cassandraHosts: [<%= @cassandra_ip %>]
22     localDataCenter: <%= @DC_NAME %>
23     reconnectTimeout : 30000
24     socketReadTimeout: <%= @socket_read_timeout %>
25     socketConnectTimeout: <%= @socket_connect_timeout %>
26     authenticate: true
27     username: <%= @cassandra_usr %>
28     password: <%= @cassandra_pwd %>
29     ssl: <%= @cassandra_ssl_enabled %>
30     truststorePath: /var/lib/jetty/etc/truststore
31     truststorePassword: <%= @cassandra_truststore_password %>
32
33 # access restriction
34 authCookie:
35   securityKey: MlB1WHFpSHNVTWdJZU1PcQ==
36   maxSessionTimeOut: 86400000
37   sessionIdleTimeOut: 3600000
38   cookieName: "AuthenticationCookie"
39   path: /
40   domain: ""
41   isHttpOnly: true
42   # redirect variable name from portal.properties file
43   redirectURL: "redirect_url"
44   excludedUrls: ['/.*']
45   onboardingExcludedUrls: ['/.*']