diff options
Diffstat (limited to 'sdc-os-chef/sdc-sanity')
2 files changed, 17 insertions, 8 deletions
diff --git a/sdc-os-chef/sdc-sanity/chef-repo/cookbooks/sdc-sanity/recipes/sanityTests_3_sanity_execution.rb b/sdc-os-chef/sdc-sanity/chef-repo/cookbooks/sdc-sanity/recipes/sanityTests_3_sanity_execution.rb index 517db3d76f..0ffa48d6ed 100644 --- a/sdc-os-chef/sdc-sanity/chef-repo/cookbooks/sdc-sanity/recipes/sanityTests_3_sanity_execution.rb +++ b/sdc-os-chef/sdc-sanity/chef-repo/cookbooks/sdc-sanity/recipes/sanityTests_3_sanity_execution.rb @@ -1,5 +1,11 @@ tests_base="/var/lib/tests" -ci_test_suite="pass.xml" +ci_test_suite="onap.xml" + +bash "echo status" do + code <<-EOH + echo "DOCKER STARTED" + EOH +end bash "run asdc ci sanity tests" do cwd "#{tests_base}" @@ -10,10 +16,4 @@ code <<-EOH echo "return code from startTest.sh = [$?]" echo "DOCKER STARTED" EOH -timeout 72000 end -bash "echo status" do - code <<-EOH - echo "DOCKER STARTED" - EOH -end
\ No newline at end of file diff --git a/sdc-os-chef/sdc-sanity/chef-repo/cookbooks/sdc-sanity/templates/default/sdc-sanity.yaml.erb b/sdc-os-chef/sdc-sanity/chef-repo/cookbooks/sdc-sanity/templates/default/sdc-sanity.yaml.erb index c57269c764..8dde3cdefe 100644 --- a/sdc-os-chef/sdc-sanity/chef-repo/cookbooks/sdc-sanity/templates/default/sdc-sanity.yaml.erb +++ b/sdc-os-chef/sdc-sanity/chef-repo/cookbooks/sdc-sanity/templates/default/sdc-sanity.yaml.erb @@ -18,7 +18,7 @@ errorConfigurationFile: <%= @errorConfigurationFile %> configurationFile: <%= @ConfigurationFile %> importTypesConfigDir: <%= @importTypesDir %> titanPropertiesFile: <%= @titan_file %> -systemUnderDebug: false +systemUnderDebug: true cassandraHost: <%= @CASSANDRA_IP %> cassandraAuthenticate: true @@ -30,6 +30,15 @@ cassandraTruststorePassword : Aa123456 cassandraAuditKeySpace: sdcAudit cassandraArtifactKeySpace: sdcArtifact +# catalog backend protocol +<% if node[:disableHttp] -%> +sdcHttpMethod: https +<% else %> +sdcHttpMethod: http +<% end -%> + +localDataCenter: DC-Automate01 + stopOnClassFailure: false #List of non-abstract resources to keep during titan cleanup between tests |