44 lines
1.8 KiB
Plaintext
44 lines
1.8 KiB
Plaintext
flowchart LR
|
|
classDef base fill:#e1f5fe,stroke:#0288d1,stroke-width:2px;
|
|
classDef net fill:#ede7f6,stroke:#5e35b1,stroke-width:2px;
|
|
classDef compute fill:#fff3e0,stroke:#f57c00,stroke-width:2px;
|
|
classDef target fill:#e8f5e9,stroke:#2e7d32,stroke-width:2px;
|
|
classDef note fill:#fafafa,stroke:#9e9e9e,stroke-width:1px,stroke-dasharray: 4 4;
|
|
|
|
subgraph S1 ["Шаг 1. Тенант"]
|
|
ORG["<b>Организация (vcOrg: 19)</b><br/>• Тип: iaas / saas"]:::base
|
|
end
|
|
|
|
subgraph S2 ["Шаг 2. Пул ресурсов"]
|
|
VDC["<b>Виртуальный ДЦ (vcVdc: 21)</b><br/>• cpuGuaranteed: 0% / 50% / 80%<br/>• Пул: cpuAllocated, memAllocated, storage"]:::compute
|
|
end
|
|
|
|
subgraph S3 ["Шаг 3. Сетевой периметр"]
|
|
EDGE["<b>Шлюз Edge (vcNsxt: 22)</b><br/>• AVI Load Balancer<br/>• <i>modify:</i> SNAT (ipSpaceName)"]:::net
|
|
end
|
|
|
|
subgraph S4 ["Шаг 4. Среда запуска и адреса"]
|
|
VAPP["<b>Каталог vApp (26)</b><br/>(контейнер для ВМ)"]:::compute
|
|
IP["<b>Внешние IP</b><br/>• vcOrg modify / 25<br/>• квота адресов (ipSpace)"]:::note
|
|
end
|
|
|
|
subgraph S5 ["Шаг 5. Потребители"]
|
|
VM["<b>Виртуальная машина (28)</b><br/>• vmCpu, vmRam, vmDisk"]:::target
|
|
SHTURVAL["<b>Кластер Штурвал (150)</b><br/>• sizingPolicy, sizingDisk, count"]:::target
|
|
end
|
|
|
|
ORG -->|"organizationUid"| VDC
|
|
VDC -->|"vdcUid"| EDGE
|
|
ORG -.->|"modify: vIPConfigure"| IP
|
|
EDGE -.->|"modify: SNAT (ipSpaceName)"| IP
|
|
|
|
VDC -->|"vdcUid"| VAPP
|
|
EDGE -->|"nsxtUid"| VAPP
|
|
|
|
VAPP -->|"vappUid"| VM
|
|
IP -.->|"внешний IP"| VM
|
|
|
|
VDC -->|"vdcUid"| SHTURVAL
|
|
EDGE -->|"nsxtUid"| SHTURVAL
|
|
IP -.->|"внешний IP (>= 3)"| SHTURVAL
|