summaryrefslogtreecommitdiff
path: root/micro/vms/lautaro.mmd
blob: 525de49bf618d0983bac7d270a0cfbcdd090241c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
%%{init: {'theme': 'base', 'flowchart': {'nodeSpacing': 40, 'rankSpacing': 50}}}%%
flowchart TB
    subgraph rpi ["lautaro - 192.168.99.108<br/>Raspberry Pi | Debian armv7l<br/>NON ACCESSIBLE - Donnees documentees"]

        subgraph docker_env ["Docker Engine"]
            ha["Home Assistant<br/>Port: 8123<br/>network_mode: host"]
        end

        subgraph config ["Configuration"]
            compose["~/homeassistant/<br/>docker-compose.yml"]
            ha_config["configuration.yaml<br/>secrets.yaml"]
        end
    end

    subgraph external ["Acces reseau"]
        clients["Clients LAN<br/>192.168.99.0/24"]
    end

    ha --- compose
    ha --- ha_config
    clients -->|":8123"| ha

    classDef haStyle fill:#1e4a4a,stroke:#4a9a9a,color:#a8e0e0
    classDef configStyle fill:#2a3a4a,stroke:#6a8aaa,color:#b0d0e8
    classDef netStyle fill:#1e3a5f,stroke:#4a90d9,color:#a8d0f0
    classDef dormStyle fill:#2a2a2a,stroke:#666,color:#999

    class ha haStyle
    class compose,ha_config configStyle
    class clients netStyle

    style rpi stroke-dasharray: 5 5