-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#15 Add Openstack as cloud provider #211
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
""" | ||
Elastic provides a set of general OpenStack services. | ||
""" | ||
|
||
from diagrams import Node | ||
|
||
|
||
class _OpenStack(Node): | ||
_provider = "openstack" | ||
_icon_dir = "resources/openstack" | ||
|
||
fontcolor = "#ffffff" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _Adjacentenablers(_OpenStack): | ||
_type = "adjacentenablers" | ||
_icon_dir = "resources/openstack/adjacentenablers" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _Apiproxies(_OpenStack): | ||
_type = "apiproxies" | ||
_icon_dir = "resources/openstack/apiproxies" | ||
|
||
|
||
class EC2API(_Apiproxies): | ||
_icon = "ec2api.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _Applicationlifecycle(_OpenStack): | ||
_type = "applicationlifecycle" | ||
_icon_dir = "resources/openstack/applicationlifecycle" | ||
|
||
|
||
class Freezer(_Applicationlifecycle): | ||
_icon = "freezer.png" | ||
|
||
|
||
class Masakari(_Applicationlifecycle): | ||
_icon = "masakari.png" | ||
|
||
|
||
class Murano(_Applicationlifecycle): | ||
_icon = "murano.png" | ||
|
||
|
||
class Solum(_Applicationlifecycle): | ||
_icon = "solum.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _Baremetal(_OpenStack): | ||
_type = "baremetal" | ||
_icon_dir = "resources/openstack/baremetal" | ||
|
||
|
||
class Cyborg(_Baremetal): | ||
_icon = "cyborg.png" | ||
|
||
|
||
class Ironic(_Baremetal): | ||
_icon = "ironic.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _Billing(_OpenStack): | ||
_type = "billing" | ||
_icon_dir = "resources/openstack/billing" | ||
|
||
|
||
class Cloudkitty(_Billing): | ||
_icon = "cloudkitty.png" | ||
|
||
|
||
# Aliases | ||
|
||
CloudKitty = Cloudkitty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _Compute(_OpenStack): | ||
_type = "compute" | ||
_icon_dir = "resources/openstack/compute" | ||
|
||
|
||
class Nova(_Compute): | ||
_icon = "nova.png" | ||
|
||
|
||
class Qinling(_Compute): | ||
_icon = "qinling.png" | ||
|
||
|
||
class Zun(_Compute): | ||
_icon = "zun.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _Containerservices(_OpenStack): | ||
_type = "containerservices" | ||
_icon_dir = "resources/openstack/containerservices" | ||
|
||
|
||
class Kuryr(_Containerservices): | ||
_icon = "kuryr.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _Deployment(_OpenStack): | ||
_type = "deployment" | ||
_icon_dir = "resources/openstack/deployment" | ||
|
||
|
||
class Ansible(_Deployment): | ||
_icon = "ansible.png" | ||
|
||
|
||
class Charms(_Deployment): | ||
_icon = "charms.png" | ||
|
||
|
||
class Chef(_Deployment): | ||
_icon = "chef.png" | ||
|
||
|
||
class Helm(_Deployment): | ||
_icon = "helm.png" | ||
|
||
|
||
class Kolla(_Deployment): | ||
_icon = "kolla.png" | ||
|
||
|
||
class Tripleo(_Deployment): | ||
_icon = "tripleo.png" | ||
|
||
|
||
# Aliases | ||
|
||
KollaAnsible = Kolla | ||
TripleO = Tripleo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _Frontend(_OpenStack): | ||
_type = "frontend" | ||
_icon_dir = "resources/openstack/frontend" | ||
|
||
|
||
class Horizon(_Frontend): | ||
_icon = "horizon.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _Lifecyclemanagement(_OpenStack): | ||
_type = "lifecyclemanagement" | ||
_icon_dir = "resources/openstack/lifecyclemanagement" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _Monitoring(_OpenStack): | ||
_type = "monitoring" | ||
_icon_dir = "resources/openstack/monitoring" | ||
|
||
|
||
class Monasca(_Monitoring): | ||
_icon = "monasca.png" | ||
|
||
|
||
class Telemetry(_Monitoring): | ||
_icon = "telemetry.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _Multiregion(_OpenStack): | ||
_type = "multiregion" | ||
_icon_dir = "resources/openstack/multiregion" | ||
|
||
|
||
class Tricircle(_Multiregion): | ||
_icon = "tricircle.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _Networking(_OpenStack): | ||
_type = "networking" | ||
_icon_dir = "resources/openstack/networking" | ||
|
||
|
||
class Designate(_Networking): | ||
_icon = "designate.png" | ||
|
||
|
||
class Neutron(_Networking): | ||
_icon = "neutron.png" | ||
|
||
|
||
class Octavia(_Networking): | ||
_icon = "octavia.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _NFV(_OpenStack): | ||
_type = "nfv" | ||
_icon_dir = "resources/openstack/nfv" | ||
|
||
|
||
class Tacker(_NFV): | ||
_icon = "tacker.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _OpenStack | ||
|
||
|
||
class _Operations(_OpenStack): | ||
_type = "operations" | ||
_icon_dir = "resources/openstack/operations" | ||
|
||
|
||
# Aliases |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I haven't check this comment. Please update it! (Elastic => OpenStack)