Deployment Commands¶
Commands for managing and viewing Kubernetes deployments.
List Deployments¶
Flags¶
Flag | Short | Description | Default |
---|---|---|---|
--namespace |
-n |
Target namespace | default |
--all-namespaces |
-A |
List across all namespaces | false |
--metrics |
- | Show CPU/Memory usage | false |
Examples¶
List deployments in default namespace:
List deployments in specific namespace:
List deployments across all namespaces:
Show resource usage:
Output¶
The output includes:
- Deployment name
- Ready replicas (ready/total)
- Up-to-date replicas
- Available replicas
- Age (smart formatting)
- CPU usage (if --metrics flag is used)
- Memory usage (if --metrics flag is used)
- Namespace (when listing across namespaces)
Example output:
NAME READY UP-TO-DATE AVAILABLE AGE CPU MEMORY
nginx-deployment 3/3 3 3 5d6h 30m 384Mi
redis-deployment 2/2 2 2 2h30m 100m 512Mi