history

command
v0.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 26, 2022 License: Apache-2.0 Imports: 9 Imported by: 0

README

View Workload History

This example shows you how to view the Deployment revision history.

Running this example

Make sure your kubectl and ~/.kube/config is configured. Run kubectl get nodes to confirm.

View the Deployment nginx in default namespace revision history.

Use kubectl rollout history view the history:

$ kubectl rollout history deployment/nginx
deployment.apps/nginx
REVISION  CHANGE-CAUSE
1         <none>
2         <none>

Use kubectl get deploy nginx -oyaml show the current revision is 2.

apiVersion: apps/v1
kind: Deployment
metadata:
  annotations:
    deployment.kubernetes.io/revision: "2"
  creationTimestamp: "2021-02-17T09:05:09Z"
  generation: 2
  labels:
    history: nginx
  name: nginx
  namespace: default
  resourceVersion: "836"
  selfLink: /apis/apps/v1/namespaces/default/deployments/nginx
  uid: 4efa8de9-96a9-4e44-99b7-7c1d8233358e

Running this application use the kubeconfig file to authenticate the cluster, and view the revision history.

Run this application with:

$ go build -o viewer .
$ ./viewer -namespace default -kind Deployment -name nginx
New Revision: 2
Old Revision: 1

The results the same as kubectl rollout history.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL