Merge branch 'features/onpremise_proxmox_ve'

pull/215/head
Bruno Emanuel 5 years ago
commit e938624ed7

@ -124,6 +124,9 @@ ALIASES = {
"Pfsense": "PFSense",
"Vyos": "VyOS"
},
"proxmox": {
"ProxmoxVE": "PVE",
},
"queue": {
"Activemq": "ActiveMQ",
"Rabbitmq": "RabbitMQ",

@ -0,0 +1,15 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _OnPrem
class _Ceph(_OnPrem):
_type = "ceph"
_icon_dir = "resources/onprem/ceph"
class Ceph(_Ceph):
_icon = "ceph.png"
# Aliases

@ -0,0 +1,17 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _OnPrem
class _Proxmox(_OnPrem):
_type = "proxmox"
_icon_dir = "resources/onprem/proxmox"
class Pve(_Proxmox):
_icon = "pve.png"
# Aliases
PVE = ProxmoxVE

@ -0,0 +1,19 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _OnPrem
class _Storage(_OnPrem):
_type = "storage"
_icon_dir = "resources/onprem/storage"
class Ceph(_Storage):
_icon = "ceph.png"
class Glusterfs(_Storage):
_icon = "glusterfs.png"
# Aliases

@ -137,6 +137,10 @@ Node classes list of onprem provider.
- **diagrams.onprem.network.Vyos**, **VyOS** (alias)
- **diagrams.onprem.network.Zookeeper**
## onprem.proxmox
- **diagrams.onprem.proxmox.Pve**
## onprem.queue
- **diagrams.onprem.queue.Activemq**, **ActiveMQ** (alias)
@ -155,6 +159,11 @@ Node classes list of onprem provider.
- **diagrams.onprem.security.Trivy**
- **diagrams.onprem.security.Vault**
## onprem.storage
- **diagrams.onprem.storage.Ceph**
- **diagrams.onprem.storage.Glusterfs**
## onprem.vcs
- **diagrams.onprem.vcs.Git**

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

@ -13,7 +13,7 @@ import sys
import config as cfg
from . import resource_dir
_usage = "Usage: resources.py <cmd> <pvd>"
_usage = "Usage: resource.py <cmd> <pvd>"
def cleaner_onprem(f):

Loading…
Cancel
Save