diff options
Diffstat (limited to 'catalog-fe/sdc-frontend')
-rw-r--r-- | catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/templates/default/FE-configuration.yaml.erb | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/templates/default/FE-configuration.yaml.erb b/catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/templates/default/FE-configuration.yaml.erb index 4b64df3101..d97abdefd2 100644 --- a/catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/templates/default/FE-configuration.yaml.erb +++ b/catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/templates/default/FE-configuration.yaml.erb @@ -26,6 +26,14 @@ threadpoolSize: 50 # request processing timeout (seconds) requestTimeout: 10 +# catalog ms (the host-port values need to be changed once it is deployed) +catalogFacadeMs: + protocol: http + host: <%= node['FACADE_VIP'] %> + port: <%= @facade_port %> + healthCheckUri: "/healthCheck" + path: "/uicache" + # Determines the health check read timeout when invoking health check towards the LB (or BE whatever is configured): healthCheckSocketTimeoutInMs: 5000 @@ -89,6 +97,14 @@ optionalHeaderFields: version: 1.0 released: 2012-11-30 +# access restriction +authCookie: + cookieName: "AuthenticationCookie" + path: / + domain: "" + securityKey: <%= node['access_restriction_key'] %> + + # Connection parameters connection: url: jdbc:mysql://localhost:3306/db @@ -105,11 +121,10 @@ systemMonitoring: isProxy: true probeIntervalInSeconds: 15 -kibanaHost: <%= @kb_host_ip %> -kibanaPort: 5601 -kibanaProtocol: http healthStatusExclude: - DE - DMAAP - DCAE + - DMAAP_PRODUCER + - PORTAL |