Kubernetes
notes taken while learning kubernetes for fun and possible job upgrades mwehehehe
Overview
Kubernetes is an open-source container orchestration platform. What does this mean? It means th...
Core Components
Services
API objects that provide reliable network endpoints and load balancing for a pod or set of pods. ...
Pods
A container or group of containers that share storage, network resources, and a deployment specif...
Deployments
A high-level pod management system that defines the desired state of an app deployed using Kubern...
Volumes
A persistent directory accessible by containers. Volumes in Kubernetes should (theoretically) al...
Exposing Data to Containers
There are two main ways to do this: config maps and secrets. Secrets Secrets are encrypted key-...