- pods: encapsulates an app’s container(s), storage, IP, and options
- service: abstract way to expose an app running on a set of Pods as a network service (could be a deployment or stuff) as part of the 'spec' there is a 'selector' which targets pods.
- clusterIP: only available intra cluster
- nodePort: Exposes the Service on each Node’s IP at a static port
(implies clusterIP too) - loadBalancer: Exposes the Service externally using a cloud provider’s load balancer.
(implies nodePort+clusterIP too) - externalName: Maps the Service to the contents of the externalName. (returns the CNAME instead of a the clusterIP of the service.)
- volume: offers some persistence across restarts and sharing across containers in a pod. lots of volume type choices.
- namespace
k8s higher-level objects
- deployment: kinda covers pods+replicasets. like 'what to run and how many'
- daemonSet: ensures that all (or some) Nodes run a copy of a Pod. think logging/metrics daemons per pod.
- statefulSet: for managing stateful apps. provides guarantees about the ordering and uniqueness of these Pods. sticky identifier.
- replicaSet: maintain a stable set of replica Pods running at any given time. you may never need this....its kinda baked into a Deployment.
- job: creates one or more Pods and ensures that a specified number of them successfully terminate.
- cronJob: creates Jobs on a time-based schedule.
k8s Control Plane = k8s Master + kubelet processes
Node - is a worker machine. NOT inherently created by k8s!
Services on a node include [container runtime, kubelet, kube-proxy]
kubectl get nodes
kubectl describe node minikube
(Addresses (internal/external ip), Conditions(Resource Pressures), Capacity+Available, Info(versions) )
k8s master ie API server runs a bunch of controllers ex: [nodeController, deploymentController, jobController, etc, etc]