pull/291/head
Bruno Emanuel 5 years ago
parent c9bb452dad
commit 832b830822

@ -130,13 +130,19 @@ ALIASES = {
"Vyos": "VyOS" "Vyos": "VyOS"
}, },
"proxmox": { "proxmox": {
"ProxmoxVE": "PVE", "Pve": "ProxmoxVE",
}, },
"queue": { "queue": {
"Activemq": "ActiveMQ", "Activemq": "ActiveMQ",
"Rabbitmq": "RabbitMQ", "Rabbitmq": "RabbitMQ",
"Zeromq": "ZeroMQ", "Zeromq": "ZeroMQ",
}, },
"storage": {
"ceph": {
"CEPH": "ceph",
"Ceph-OSD": "CEPH-OSD"
}
},
"workflow": { "workflow": {
"Kubeflow": "KubeFlow", "Kubeflow": "KubeFlow",
"Nifi": "NiFi", "Nifi": "NiFi",

@ -14,4 +14,4 @@ class Pve(_Proxmox):
# Aliases # Aliases
PVE = ProxmoxVE ProxmoxVE = Pve

@ -2,18 +2,18 @@
from . import _OnPrem from . import _OnPrem
class _Storage(_OnPrem): class _Storage(_OnPrem):
_type = "storage" _type = "storage"
_icon_dir = "resources/onprem/storage" _icon_dir = "resources/onprem/storage"
class CephOsd(_Storage):
_icon = "ceph-osd.png"
class Ceph(_Storage): class Ceph(_Storage):
_icon = "ceph.png" _icon = "ceph.png"
class Glusterfs(_Storage): class Glusterfs(_Storage):
_icon = "glusterfs.png" _icon = "glusterfs.png"
# Aliases # Aliases
{'CEPH': 'ceph', 'Ceph-OSD': 'CEPH-OSD'} = ceph

@ -152,7 +152,7 @@ Node classes list of onprem provider.
## onprem.proxmox ## onprem.proxmox
- **diagrams.onprem.proxmox.Pve** - **diagrams.onprem.proxmox.Pve**, **ProxmoxVE** (alias)
## onprem.queue ## onprem.queue
@ -173,6 +173,7 @@ Node classes list of onprem provider.
## onprem.storage ## onprem.storage
- **diagrams.onprem.storage.CephOsd**
- **diagrams.onprem.storage.Ceph** - **diagrams.onprem.storage.Ceph**
- **diagrams.onprem.storage.Glusterfs** - **diagrams.onprem.storage.Glusterfs**

Loading…
Cancel
Save