Skip to content

Instantly share code, notes, and snippets.

@travishen
Last active August 2, 2022 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save travishen/179ec5f498c86c9d9897a347c1b9b575 to your computer and use it in GitHub Desktop.
Save travishen/179ec5f498c86c9d9897a347c1b9b575 to your computer and use it in GitHub Desktop.
graph LR
    subgraph a[Clients]
        a1[kubectl]
        a2[docker]
        a3[ctr]
    end
    subgraph b[Container engine]
        b1[kubernetes]
        b2[dockerd]
    end
    subgraph c[Container runtime]
        c1[cri-o]
        c2[containerd]
    end
    subgraph d[Runtime]
        d1[runc]
    end
    subgraph e[OS]
        e1[Linux]
    end
    a1 -.-> b1
    a2 -.-> b2
    b1 -.-> c1
    b1 -.-> c2
    b2 -.-> c2
    a3 -.-> c2
    c1 -.-> d1
    c2 -.-> d1
    d1 -.-> e1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment