backend-and-orchestration-t.../references_for_k8s.md
Mia von Steinkirch, PhD, MSc 78d75bae41
🐌 add link for k14s
2020-02-09 09:05:26 -08:00

5.4 KiB
Raw Blame History

Kubernetes

A Kubernetes cluster consists of Nodes (similar to servers). Nodes run Pods, which 
are collections of Docker containers. Containers in a Pod share the same network.
Deployment is a Kubernetes object responsible for launching and maintaining pods.
Services objects allow pods to communicate with other pods. 

Examples in this repository

Learning K8s

Tools

  • Minikube implements a local Kubernetes cluster on macOS, Linux, and Windows. You can install it following this instructions.
  • kubectl is a command line interface for running commands against Kubernetes clusters.
  • kubectx is a tool to switch between k8s contexts.
  • k14s: Kubernetes Tools that follow Unix philosophy to be simple, and composable.

Tutorials

MOOCs & Learning Vidoes

Articles

Prometheus Operator