|
How to get Kubernetes Deployment description and events
Author: Venkata Sudhakar
The below example shows how to get Kubernetes Deployment description and events.
01 | $ kubectl get deployments |
02 | NAME READY UP-TO-DATE AVAILABLE AGE |
05 | $ kubectl describe deployment http |
08 | CreationTimestamp: Sat, 06 Mar 2021 07 : 49 : 55 + 0000 |
10 | Annotations: deployment.kubernetes.io/revision: 1 |
12 | Replicas: 1 desired | 1 updated | 1 total | 1 available | 0 unavailable |
13 | StrategyType: RollingUpdate |
15 | RollingUpdateStrategy: 25 % max unavailable, 25 % max surge |
20 | Image: bethecoder/docker-http-server:latest |
29 | Available True MinimumReplicasAvailable |
30 | Progressing True NewReplicaSetAvailable |
32 | NewReplicaSet: http-8d74f97b5 ( 1 / 1 replicas created) |
34 | Type Reason Age From Message |
35 | ---- ------ ---- ---- ------- |
36 | Normal ScalingReplicaSet 96s deployment-controller Scaled up replica set http-8d74f97b5 to 1 |
|
|