Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 625 Bytes

K8S Pod.md

File metadata and controls

18 lines (12 loc) · 625 Bytes
title notetype date
K8S Pod
feed
07-11-2021

Pod is a [[K8S Object]] used to run one or more tightly coupled containers and is rarely used directly, especially in production because of the limitations on the number of properties that can be updated. Instead, pods are usually managed by other objects like [[K8S Replicaset]].

All containers in a pod can reach themselves via localhost as they are part of the same network. It's also easy to share volumes between them.

A pod can have a specific [[K8S Service Account]] attached to it, otherwise it uses the default one.


Status: #💡

References: