diff options
Diffstat (limited to 'ui-ci')
-rw-r--r-- | ui-ci/pom.xml | 1 | ||||
-rw-r--r-- | ui-ci/sdc-ui-tests/chef-repo/cookbooks/sdc-ui-tests/templates/default/sdc-sanity.yaml.erb | 14 |
2 files changed, 13 insertions, 2 deletions
diff --git a/ui-ci/pom.xml b/ui-ci/pom.xml index 9317bccff7..94a8c99a19 100644 --- a/ui-ci/pom.xml +++ b/ui-ci/pom.xml @@ -427,7 +427,6 @@ <dockerFileDir>${project.basedir}/sdc-ui-tests</dockerFileDir> <tags> <tag>${docker.tag}</tag> - <tag>${docker.latest.tag}</tag> <tag>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest</tag> </tags> </build> 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 |