[KR] Kubernetes - Pod / ReplicaSet / Deployment
Pod 쿠버네티스에서 Pod를 정의하는 정의하는 yaml의 형태는 다음과 같다. (Pod 뿐만 아니라 다른 오브젝트도 동일) # pod-definition.yml apiVersion: kind: metadata: spec: containers: - name: # - before the name indicates, its first item in the list image: Pod 관련 명령어 kubectl create -f [FILE NAME].yml kubectl create -f [FILE NAME].yml --record 또는 kubectl apply -f [FILE NAME].yml kubectl get pods kubectl describe pod [POD NAME] Labels, Selectors 개념 Labels and Selectors act as a filter, filtering pods for ReplicsSet Labels와 Selectors는 필터로서의 기능을 함....