Admin Notebook: How to be quick with kubectl 1.19 [CKA]

Arun Kumar Singh
4 min readOct 18, 2020
Photo by Thomas Lipke on Unsplash

Kubernetes admin has to work on multiple things in parallel. Growing popularity on Kubernetes will force you sooner or later to become a ninja quick. In my opinion working with Imperative commands will help you out performing simple task quickly. Examples are as follows:

POD:

kubectl run nginx --image=nginx:latest --restart=Always

--

--