Commit 471f1758 authored by Rafael Monnerat's avatar Rafael Monnerat

slapos_panel: (fixup) slapos_master_web_url isn't hateoas_url

   hateoas url is the website but it requires ssl authentication (like portal_slap), while the slapos_master_web_url is the website the user is accessing (no ssl authentication required).
parent 7acf0371
Pipeline #34200 failed with stage
in 0 seconds
......@@ -17,14 +17,7 @@ if slapos_master_api is None:
# This url is only used to call 1 (one) python script.
# it could be whatever url able to reach erp5
slapos_master_web_url = portal.portal_preferences.getPreferredHateoasUrl(web_site.absolute_url())
if slapos_master_web_url is None:
return context.Base_redirect(
keep_items={
'portal_status_message': 'slapos_master_web_url is not configured',
'portal_status_level': 'error'
}
)
slapos_master_web_url = web_site.absolute_url()
# XXX this url is HARDCODED on the client side
# and so, can not be modified
......@@ -52,7 +45,7 @@ access_token.validate()
compute_node_install_command_line = web_site.getLayoutProperty(
"configuration_compute_node_install_command_line",
"wget https://deploy.erp5.net/slapos ; bash slapos")
"wget https://deploy.rapid.space/slapos ; bash slapos")
return context.Base_renderForm(
'Base_viewSlapOSComputeNodeTokenDialog',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment