👾 code and notes on cloud microservices, orchestration (e.g., cloud, terraform, kubernetes, docker, data engineering)
Find a file
Mia von Steinkirch a6939e29bc
🍉Add eksctl file
2019-10-29 22:09:25 -07:00
.github 🐸Update funding 2019-10-29 20:34:36 -07:00
kustomize-example 🦁Create gitkeep 2019-10-29 20:35:35 -07:00
node-server-example 🐨Clean up readme 2019-10-29 20:36:03 -07:00
other_infrastructure_resources 🐼Clean up suricata readme 2019-10-29 20:36:50 -07:00
eksctl.md 🍉Add eksctl file 2019-10-29 22:09:25 -07:00
kubectl.md 🦋Update kubectl 2019-10-29 20:33:54 -07:00
README.md 🐬Update Readme 2019-10-28 22:04:01 -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 & Learning Vidoes

Articles