Pods
Pods – Pods are the smallest deployable units of computing that you can create and manage in Kubernetes. A Pod (as in a pod of whales or pea pod) is a group of one or more containers, with shared storage and network resources, and a specification for how to run the containers.
List one or more pods.
List pods Sorted by Restart Count.
Get all running pods in the namespace.
Delete a pod.
Display the detailed state of a pods.
Create a pod.
Execute a command against a container in a pod.
Get an interactive shell on a single-container pod.
Display Resource usage (CPU/Memory/Storage) for pods.
Add or update the annotations of a pod.
Add or update the label of a pod.
Get pods and show labels.
Listen on a port on the local machine and forward to a port on a specified pod.
Last updated