Kubernetes

History / Edit / PDF / EPUB / BIB /
Created: June 7, 2018 / Updated: July 24, 2025 / Status: in progress / 1 min read (~105 words)
devops

  • Volume: Storage space
  • Containerized app: Application living inside of a container/pod
  • Pod: Abstraction that represents a group of one or more application containers and some shared resources for those containers
  • Node: Worker machine
  • Service: Abstraction which defines a logical set of pods and a policy by which to access them

docker ps -aq

docker stop $(docker ps -aq)

docker rm $(docker ps -aq)

docker rmi $(docker images -q)