diff options
author | Avi Ziv <avi.ziv@amdocs.com> | 2018-03-15 13:21:44 +0200 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2018-04-24 07:50:44 +0000 |
commit | c175a0de2f05d37c1c774684318a525eb96bb59b (patch) | |
tree | 0c8bd736fdbcb512fefce93ec841fd3537336206 /ui-ci/sdc-ui-tests/chef-repo | |
parent | 08d85958f46d1de9aec9cf459632b5be040063be (diff) |
Create on boarding docker
Add BE and Cassandra init docker images
Change-Id: Id9d767c73fc946819cec821b4634ce650cbb22fd
Issue-ID: SDC-781
Signed-off-by: Michael Lando <ml636r@att.com>
Diffstat (limited to 'ui-ci/sdc-ui-tests/chef-repo')
-rw-r--r-- | ui-ci/sdc-ui-tests/chef-repo/cookbooks/sdc-ui-tests/templates/default/sdc-sanity.yaml.erb | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/ui-ci/sdc-ui-tests/chef-repo/cookbooks/sdc-ui-tests/templates/default/sdc-sanity.yaml.erb b/ui-ci/sdc-ui-tests/chef-repo/cookbooks/sdc-ui-tests/templates/default/sdc-sanity.yaml.erb index 98c3dc8b7e..70063e00d5 100644 --- a/ui-ci/sdc-ui-tests/chef-repo/cookbooks/sdc-ui-tests/templates/default/sdc-sanity.yaml.erb +++ b/ui-ci/sdc-ui-tests/chef-repo/cookbooks/sdc-ui-tests/templates/default/sdc-sanity.yaml.erb @@ -1,12 +1,24 @@ url: http://<%= @webportal_ip %>:8285/sdc1 browser: firefox uiSimulator: true -sdcHttpMethod: http + catalogBeHost: <%= @catalogBE_ip %> catalogBePort: <%= @catalogBE_port %> catalogFeHost: <%= @webportal_ip %> catalogFePort: <%= @webportal_port %> +onboardingBeHost: <%= node['ONBOARDING_BE_VIP'] %> +<% if node[:disableHttp] -%> +sdcHttpMethod: https +onboardingBePort: <%= node['ONBOARDING_BE'][:https_port] %> +<% else %> +sdcHttpMethod: http +onboardingBePort: <%= node['ONBOARDING_BE'][:http_port] %> +<% end -%> + + + + esHost: <%= @ES_IP %> esPort: 9200 disributionClientHost: disClient |