If I understood it well, there are 2 ways of running it: integrated to horizon or as a standalone application. Either way, I didn't have success.
When trying to integrating to horizon, I got the following error:
from openstack_dashboard.dashboards.project.stacks import mappings [Thu Apr 16 00:41:22.711877 2020] [wsgi:error] [pid 9624] [remote 200.158.205.139:60121] ImportError: No module named stacks
It seems to be an import on line 27 of the file onboarding/importing/tables.py, but since I don't know Django or Flask, I don't know if there is a dependency missing or its a matter of an import error.
As a standalone app, there seems to be an authentication error (401), but I've confirmed the credentials multiple times and there is little chance of that. Trace below:
Setting up node-request (2.88.1-2) ...
ion
reraise(exc_type, exc_value, tb)
File "/home/debian/openstack-ova-onboarding/env/lib/python2.7/site-packages/flask/app.py", line 2447, in wsgi_app
response = self.full_dispatch_request()
File "/home/debian/openstack-ova-onboarding/env/lib/python2.7/site-packages/flask/app.py", line 1952, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/debian/openstack-ova-onboarding/env/lib/python2.7/site-packages/flask/app.py", line 1821, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/debian/openstack-ova-onboarding/env/lib/python2.7/site-packages/flask/app.py", line 1950, in full_dispatch_request
rv = self.dispatch_request()
File "/home/debian/openstack-ova-onboarding/env/lib/python2.7/site-packages/flask/app.py", line 1936, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/debian/openstack-ova-onboarding/app/modules/status.py", line 26, in status
heat = HeatClient(version=1, endpoint=session.get_endpoint("heat", region), token=session.token)
File "/home/debian/openstack-ova-onboarding/app/modules/openstack/session.py", line 27, in get_endpoint
access = self.auth.get_access(self.session)
File "/home/debian/openstack-ova-onboarding/env/lib/python2.7/site-packages/keystoneauth1/identity/base.py", line 134, in get_access
self.auth_ref = self.get_auth_ref(session)
File "/home/debian/openstack-ova-onboarding/env/lib/python2.7/site-packages/keystoneauth1/identity/generic/base.py", line 208, in get_auth_ref
return self._plugin.get_auth_ref(session, **kwargs)
File "/home/debian/openstack-ova-onboarding/env/lib/python2.7/site-packages/keystoneauth1/identity/v2.py", line 63, in get_auth_ref
authenticated=False, log=False)
File "/home/debian/openstack-ova-onboarding/env/lib/python2.7/site-packages/keystoneauth1/session.py", line 1131, in post
return self.request(url, 'POST', **kwargs)
File "/home/debian/openstack-ova-onboarding/env/lib/python2.7/site-packages/keystoneauth1/session.py", line 968, in request
raise exceptions.from_response(resp, method, url)
Unauthorized: The request you have made requires authentication. (HTTP 401) (Request-ID: req-6bfdc78d-790c-449e-a5f4-256b733af83e)
If I understood it well, there are 2 ways of running it: integrated to horizon or as a standalone application. Either way, I didn't have success.
When trying to integrating to horizon, I got the following error:
from openstack_dashboard.dashboards.project.stacks import mappings [Thu Apr 16 00:41:22.711877 2020] [wsgi:error] [pid 9624] [remote 200.158.205.139:60121] ImportError: No module named stacksIt seems to be an import on line 27 of the file
onboarding/importing/tables.py, but since I don't know Django or Flask, I don't know if there is a dependency missing or its a matter of an import error.As a standalone app, there seems to be an authentication error (401), but I've confirmed the credentials multiple times and there is little chance of that. Trace below: