👾 code and notes on cloud microservices, orchestration (e.g., cloud, terraform, kubernetes, docker, data engineering)
Find a file
Mia Steinkirch d9d8ef96e9 👾 Clean up readme
2019-10-27 15:18:10 -07:00
kustomize-example 💎 Add some learning resources in K8s 2019-10-27 14:44:34 -07:00
node-server-example 🍕 Add a quick definition of k8s and fix dockerfile 2019-10-27 14:50:13 -07:00
other_infrastructure_resources 📚 Add gitkeep 2019-10-23 12:59:51 -07:00
kubectl.md 💎 Add some learning resources in K8s 2019-10-27 14:44:34 -07:00
README.md 👾 Clean up readme 2019-10-27 15:18:10 -07:00

Curated Resources on 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

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.

Tutorials

MOOCs

Articles