Skip to content

Instantly share code, notes, and snippets.

@iSignal
Created May 13, 2022 19:48
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 iSignal/893651f4e6138be3024009623e4b3cff to your computer and use it in GitHub Desktop.
Save iSignal/893651f4e6138be3024009623e4b3cff to your computer and use it in GitHub Desktop.
flowchart TD
subgraph install_docker [INSTALL DOCKER]
direction LR
I1_airgap{Is airgap?}
I1.1.1(Remove old docker pkgs)
I1.1.2(Add docker repos \n to apt/yum)
I1.1.3(apt/yum \n install packages)
I1.1.1 --- I1.1.2 --- I1.1.3
I1.2.0(DO THESE MANUALLY)
I1.2.1(Remove old docker pkgs)
I1.2.2(Copy .deb/.rpm files to node)
I1.2.3(dpkg/rpm \n install packages)
I1.2.0 --- I1.2.1 --- I1.2.2 --- I1.2.3
I1_airgap-->|NO|I1.1.1
I1_airgap-->|YES| I1.2.0
end
subgraph install_replicated [INSTALL REPLICATED]
direction LR
I2.1[Replicated prep]
I2.2[Download \n replicated \n docker images]
I2.3[Start replicated server]
I2.1 --> I2.2 --> I2.3
end
subgraph install_platform [INSTALL PLATFORM]
direction LR
I3.1[Download Platform docker images]
I3.2[Replicated preflight checks for Platform]
I3.3[Run Platform docker images]
I3.1-->I3.2-->I3.3
end
subgraph onto_platform [USE PLATFORM]
direction LR
I4.1[Register customer at platform UI on port 80]
end
install_docker--> install_replicated
install_replicated--> install_platform
install_platform-->onto_platform
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment