Skip to content

Commit

Permalink
[zuul] Use https in sg_core_service_url
Browse files Browse the repository at this point in the history
This fixes the tempest failure:

    Your browser sent a request that this server could not understand.<br />
    Reason: You're speaking plain HTTP to an SSL-enabled server port.<br />
    Instead use the HTTPS scheme to access this URL, please.<br />

The sg_core_service_url is passed straight through to the test and used
as the URL base for HTTP requests. The https:// needs to be prefixed or
else the connection will default to http, which is an issue when we
have TLS everywhere.
  • Loading branch information
elfiesmelfie committed Apr 18, 2024
1 parent d01f642 commit af15bc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/vars-autoscaling-tempest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cifmw_tempest_tempestconf_config:
service_available.ceilometer true
service_available.sg_core true
service_available.aodh true
telemetry.sg_core_service_url "ceilometer-internal.openstack.svc.cluster.local:3000"
telemetry.sg_core_service_url "https://ceilometer-internal.openstack.svc.cluster.local:3000"
cifmw_test_operator_tempest_include_list: |
telemetry_tempest_plugin.scenario
telemetry_tempest_plugin.aodh
Expand Down

0 comments on commit af15bc9

Please sign in to comment.