Skip to content

Instantly share code, notes, and snippets.

@RDxR10
Last active October 27, 2020 11:25
Show Gist options
  • Save RDxR10/32426c5bd0cd1979812968bc36858e6f to your computer and use it in GitHub Desktop.
Save RDxR10/32426c5bd0cd1979812968bc36858e6f to your computer and use it in GitHub Desktop.
Kubernetes Notes
  • Clusters: Compute resources that run containerized applications
  • Pods: Homogenenous set of containers that share data with a constraint which is to be deployed on the same cluster
  • Replication Controllers: Engaged in management of lifecycle of pods, thus they (in a way) check if a specific number of pods are running all the time.
  • Services: Basically load balancers that abstract a logical set of pods. Engaged in routing traffic to one of the pods.
  • Labels: Identifiers that filter out pods(homogenous) to perform common tasks.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment