From 15b0d1f0946f6731a2a7e473e98d04451740d495 Mon Sep 17 00:00:00 2001 From: Ivan Gromov Date: Sun, 30 May 2021 01:33:05 +0500 Subject: [PATCH] Added local and openstack providers --- app/static/provider-local.vue | 68 +++++++++++++++++++++++++++++++ app/static/provider-openstack.vue | 19 +++++++++ app/static/provider-setup.vue | 4 +- 3 files changed, 90 insertions(+), 1 deletion(-) create mode 100644 app/static/provider-local.vue create mode 100644 app/static/provider-openstack.vue diff --git a/app/static/provider-local.vue b/app/static/provider-local.vue new file mode 100644 index 000000000..552c9749f --- /dev/null +++ b/app/static/provider-local.vue @@ -0,0 +1,68 @@ + + + diff --git a/app/static/provider-openstack.vue b/app/static/provider-openstack.vue new file mode 100644 index 000000000..1d46992c6 --- /dev/null +++ b/app/static/provider-openstack.vue @@ -0,0 +1,19 @@ + + + diff --git a/app/static/provider-setup.vue b/app/static/provider-setup.vue index 93242c3ea..238ebb52c 100644 --- a/app/static/provider-setup.vue +++ b/app/static/provider-setup.vue @@ -67,7 +67,9 @@ module.exports = { 'hetzner': window.httpVueLoader('/static/provider-hetzner.vue'), 'azure': window.httpVueLoader('/static/provider-azure.vue'), 'linode': window.httpVueLoader('/static/provider-linode.vue'), - 'cloudstack': window.httpVueLoader('/static/provider-cloudstack.vue') + 'cloudstack': window.httpVueLoader('/static/provider-cloudstack.vue'), + 'openstack': window.httpVueLoader('/static/provider-openstack.vue'), + 'local': window.httpVueLoader('/static/provider-local.vue') } };