Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 1.16 KB

conventions.md

File metadata and controls

20 lines (17 loc) · 1.16 KB

Understanding FormKube's Naming Conventions

  • The following names refer to the following subset of resources:
    1. Masters refers to the master nodes.
    2. Computenodes refers to the nodes running application pods.
    3. Infranodes refers to the nodes running infrastructure pods, such as ingress controller, monitoring pods, tiller etc.
    4. Nodes refers to the superset of computenodes and infranodes.
    5. Cluster refers to the superset off all masters and nodes (excluding the bastion).
    6. Bastions refers to the bastion hosts.
    7. Controller Host refers to the machine running terraform to apply all the resources.
    8. Platform refers to the superset of all resources.

For information on how to implement the separation of computenodes and infranodes with vanilla Kubernetes, please refer to the official documentation of the PodNodeSelector admission controller and this stackoverflow thread.

Authors

  1. ksandermann