diff options
author | ilanap <ilanap@amdocs.com> | 2019-11-26 11:53:36 +0200 |
---|---|---|
committer | ilanap <ilanap@amdocs.com> | 2019-11-27 10:02:46 +0200 |
commit | 1367b73c1d1d761939f5893c711f87716a7baad0 (patch) | |
tree | ca3e94977db0575e30070d2f852c5184c4a38a06 /catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/recipes | |
parent | 1d3f7e44c9773db172694e8abe0c1ffea1538e37 (diff) |
Add API to retrieve UI configuration
Added configuration file with the menu configuration from catalog-ui. Added to the configuration manager. to chef and to the ui rest APIs.
Issue-ID: SDC-2663
Signed-off-by: ilanap <ilanap@amdocs.com>
Change-Id: Ia5e014a273238981241821c0d81b0455bd662b28
Signed-off-by: ilanap <ilanap@amdocs.com>
Diffstat (limited to 'catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/recipes')
-rw-r--r-- | catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/recipes/FE_2_setup_configuration.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/recipes/FE_2_setup_configuration.rb b/catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/recipes/FE_2_setup_configuration.rb index 9df2ac97b9..7de9dbc3d5 100644 --- a/catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/recipes/FE_2_setup_configuration.rb +++ b/catalog-fe/sdc-frontend/chef-repo/cookbooks/sdc-catalog-fe/recipes/FE_2_setup_configuration.rb @@ -14,6 +14,15 @@ template "catalog-fe-config" do }) end +cookbook_file "#{ENV['JETTY_BASE']}/config/catalog-fe/workspace-configuration.yaml" do + source "FE-workspace-configuration.yaml" + mode 0755 + owner "jetty" + group "jetty" +end + + + template "onboarding-fe-config" do path "#{ENV['JETTY_BASE']}/config/onboarding-fe/onboarding_configuration.yaml" source "FE-onboarding-configuration.yaml.erb" |