Posts

Showing posts with the label Kubernetes Operations

Basic commands/operations in Kubernetes

  All before learning how to perform with kubectl more efficiently, you should have at least a basic knowledge of what kubectl is and how it works. Moreover, if you're new to kubernetes then you must know " Beginner’s Guide To Setup Kubernetes "  & " How To Access Kubernetes Dashboard Token ".  You can take an overview from our previous blogs.   Kubectl  is a command-line interface that is used to run commands against the clusters of Kubernetes. It’s a  CLI  tool for the users through which you can communicate with the Kubernetes  API server . Before running the command in the terminal, kubectl initially checks for the file name “config” and which you can see in the  $HOME/.Kube  directory. From a technical point of view, kubectl is a client for the Kubernetes API & from a user's point of view, it’s your cockpit to control the whole Kubernetes. Kubectl syntax describes the command operations. To run the operations, kubectl includ...