Skip to content

Instantly share code, notes, and snippets.

@Renien
Last active June 7, 2022 07:47
Show Gist options
  • Save Renien/15f5d4bae74ff0655c97e3c14a6b11e3 to your computer and use it in GitHub Desktop.
Save Renien/15f5d4bae74ff0655c97e3c14a6b11e3 to your computer and use it in GitHub Desktop.
Kubectl Cheat Sheet

Cheat Sheet

Details of the pods

$kubectl get pods -o wide

$kubectl get pods

Get the replication controller

$kubectl get rc

$kubectl get replicationcontrollers

Horizontal scale

$kubectl scale rc kubia --replicas=1

Describe pod

$kubectl describe pod kubia-swf7c kubectl describe pod

LoadBalancer (Expose RC to outside world)

$kubectl expose rc kubia --type=LoadBalancer --name kubia-http

Kubectl explain

$kubectl explain pod $kubectl explain pod.spec

image

Reference: https://kubernetes.io/docs/reference/kubectl/cheatsheet/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment