mirror of
https://github.com/autistic-symposium/backend-and-orchestration-toolkit.git
synced 2025-06-08 23:13:08 -04:00
👾 code and notes on cloud microservices, orchestration (e.g., cloud, terraform, kubernetes, docker, data engineering)
autismawscdkcloudcloudformationdockereksgcpk8skafkakubectlkuberneteskustomizekustomize-exampleslambda-functionslambdasnodeorchestrationpods
kustomize-example | ||
node-server-example | ||
other_infrastructure_resources | ||
kubectl.md | ||
README.md |
Learning Kubernetes
* A Kubernetes cluster consists of **Nodes** (simialr to servers)
* Nodes run **Pods**, which are collections of Docker containers. Containers in a Pod share the same network.
* The Kubernetes object responsible for launching and maintaining the desired number of pods is called a **Deployment**.
* Kubernetes provides objects called a **Service** so thart Pods to communicate with other Pods. They are tied to Deployments through Selectors and Labels, and they can be exposed to external clients either by exposing a **NodePort** as a static port on each Kubernetes node or by creating a **LoadBalancer** object/
* Kubernetes provides the **Secret** object for managing sensitive information such as passwords, API keys, and other credentials.
Examples in this repository
- Spin up a node server example.
- Use kustomize to organize and combine YAML templates of your services and deployments.
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.
References
Learning Resources
- Google's K8s 101.
- K8s Bootcamp.
- K8s the Hard Way.
- Kubernetes Community Overview and Contributions Guide by Ihor Dvoretskyi
- Are you Ready to Manage your Infrastructure like Google?
- Google is years ahead when it comes to the cloud, but it's happy the world is catching up
- An Intro to Google’s Kubernetes and How to Use It by Laura Frank
- Getting Started on Kubernetes by Rajdeep Dua
- Kubernetes: The Future of Cloud Hosting by Meteorhacks
- Kubernetes by Google by Gaston Pantana
- Key Concepts by Arun Gupta
- Application Containers: Kubernetes and Docker from Scratch by Keith Tenzer
- Learn the Kubernetes Key Concepts in 10 Minutes by Omer Dawelbeit
- Top Reasons Businesses Should Move to Kubernetes Now by Mike Johnston
- The Children's Illustrated Guide to Kubernetes by Deis
- The ‘kubectl run’ command by Michael Hausenblas
- Docker Kubernetes Lab Handbook by Peng Xiao
- Curated Resources for Kubernetes
- Kubernetes Comic by Google Cloud Platform
- Kubernetes 101: Pods, Nodes, Containers, and Clusters by Dan Sanche
- An Introduction to Kubernetes by Justin Ellingwood
- Kubernetes and everything else - Introduction to Kubernetes and it's context by Rinor Maloku
- Installation on Centos 7
- Setting Up a Kubernetes Cluster on Ubuntu 18.04
- Cloud Native Landscape
- Kubernetes Tutorials by Kubernetes Team
- Kubernetes By Example by OpenShift Team
- Kubernetes Tutorial by Tutorialspoint
- Imperative vs. Declarative — a Kubernetes Tutorial by Adrien Trouillaud
- Learning Kubernetes, The Chinese Taoist Way
- Scalable Microservices with Kubernetes at Udacity
- Introduction to Kubernetes at edX