Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

kubernetes


tl; dr


  1. a kubernetes cluster consists of nodes (similar to servers)
  2. nodes run pods, which are collections of docker containers
  3. containers in a pod share the same network
  4. deployment is a kubernetes object responsible for launching and maintaining pods
  5. services objects allow pods to communicate with other pods


examples in this repository




external resources


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
articles
prometheus operator