A cli tool for Kubernetes.
Installation
Arch Linux
sudo pacman -S kubectl
Debian
sudo apt install -y apt-transport-https ca-certificates curl gnupgcurl -fsSL https://pkgs.k8s.io/core:/stable:/v1.33/deb/Release.key | sudo gpg --dearmor -o /etc/apt/keyrings/kubernetes-apt-keyring.gpgsudo chmod 644 /etc/apt/keyrings/kubernetes-apt-keyring.gpgāecho 'deb [signed-by=/etc/apt/keyrings/kubernetes-apt-keyring.gpg] https://pkgs.k8s.io/core:/stable:/v1.33/deb/ /' | sudo tee /etc/apt/sources.list.d/kubernetes.listsudo chmod 644 /etc/apt/sources.list.d/kubernetes.listsudo apt-get updatesudo apt-get install -y kubectl
Usage
View Nodes
kubectl get nodes

View Pods
kubectl get pods -A: Get pods from all namespacesā
Applying Kubernetes Manifest
kubectl apply -f <servicedeployment>.yamlFor the specific manifest you want to deploy