tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Container Management > Kubernetes > How to get Kubernetes Deployment description and events

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
02NAME   READY   UP-TO-DATE   AVAILABLE   AGE
03http   1/1     1            1           16m
04 
05$ kubectl describe deployment http
06Name:                   http
07Namespace:              default
08CreationTimestamp:      Sat, 06 Mar 2021 07:49:55 +0000
09Labels:                 run=http
10Annotations:            deployment.kubernetes.io/revision: 1
11Selector:               run=http
12Replicas:               1 desired | 1 updated | 1 total | 1 available | 0 unavailable
13StrategyType:           RollingUpdate
14MinReadySeconds:        0
15RollingUpdateStrategy:  25% max unavailable, 25% max surge
16Pod Template:
17  Labels:  run=http
18  Containers:
19   http:
20    Image:        bethecoder/docker-http-server:latest
21    Port:         <none>
22    Host Port:    <none>
23    Environment:  <none>
24    Mounts:       <none>
25  Volumes:        <none>
26Conditions:
27  Type           Status  Reason
28  ----           ------  ------
29  Available      True    MinimumReplicasAvailable
30  Progressing    True    NewReplicaSetAvailable
31OldReplicaSets:  <none>
32NewReplicaSet:   http-8d74f97b5 (1/1 replicas created)
33Events:
34  Type    Reason             Age   From                   Message
35  ----    ------             ----  ----                   -------
36  Normal  ScalingReplicaSet  96s   deployment-controller  Scaled up replica set http-8d74f97b5 to 1

 
  


  
bl  br