Skip to content

Instantly share code, notes, and snippets.

@rupinus85
Created January 10, 2019 08:03
Show Gist options
  • Save rupinus85/6b396ba6ead65402589f5ada76e4b28c to your computer and use it in GitHub Desktop.
Save rupinus85/6b396ba6ead65402589f5ada76e4b28c to your computer and use it in GitHub Desktop.
# ReplicaSets 조회 (kubectl get replicasets 명령어 또는 kubectl get rs 명령어는 같은 의미이므로 선택적으로 사용 가능)
$ kubectl get rs
NAME DESIRED CURRENT READY AGE
gs-spring-boot-docker-deployment-56fb494f67 1 1 1 32m
# Pods 조회 (kubectl get pods 명령어 또는 kubectl get pod 명령어 또는 kubectl get po 명령어는 같은 의미이므로 선택적으로 사용 가능)
$ kubectl get po
NAME READY STATUS RESTARTS AGE
gs-spring-boot-docker-deployment-56fb494f67-g2lwr 1/1 Running 0 33m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment