Hello everyone,

Thanks for your attention and advice for this project. We have read each reply thoroughly and the good news is that we’re able to give answers to some questions raised by them.

As Lingxian Kong said:

I have a few questions/suggestions:

  1. It'd be great and gain more attractions if you could provide a demo about how "openstack-admin" looks like

  2. What OpenStack services has "openstack-admin" already integrated? Is it easy to integrate with others?

  1. We have deployed openstack-admin on a mini openstack cluster as a demo, any access would be welcomed.

    • Username: openstack-admin

    • Password: @Dem0

  2. Since openstack-admin gets information it needs by querying the sql database, it’s fairly easy to integrate with all openstack services.

    • As the demo shows, openstack-admin has integrated nova(almost all GET and part of POST), cinder(GET and snapshot-creation), neutron(subnets and ports), keystone(projects) and glance(images), that’s all we need in our own working environment.

    • If we need to integrate more services to openstack-admin(e.g. adding a create instance button or integrating with swift), it would not be a complex task, either.

As Adrian Turjak said:

The first major issue is that you connect to the databases of the services directly. That's a major issue, both for long term compatibility, and security. The APIs should always be the main point of contact and the ONLY contract that the services have to maintain. By connecting to the database directly you are now relying on a data structure that can, and likely will change, and any security and sanity checking on filters and queries is now handled on your layer rather than the application itself. Not only that, but your dashboard also now needs passwords for all the databases, and by the sounds of it all the message queues.

And as Mohammed Naser said:

While I agree with you that querying database is much faster, this introduces two issues that I imagine for users:

  • Dashboards generally having direct access via SQL is a scary thing from an operators perspective

  • also, it will make maintaining the project quite hard because I don't think any projects expose a stable database API.

Well, we’re not surprised that our querying approach would be challenged since it does sound unsafe. However, we have made some efforts to solve problems which have been posed:

I hope my explanation is clear enough, and we’re willing to solve other possible issues existing.

Cheers,

Douglas Zhang