kubectl run
-
Kubernetes Pod 생성, 확인, 수정, 삭제하기kubernetes 2021. 12. 11. 21:14
Cluster Node 살펴보기 kubectl get nodes Pod 생성하기 방법1) kubectl run 으로 생성하기 kubectl run nginx --image=nginx 방법2) yaml 파일로 생성하기 pod.yml 파일을 작성한다. apiVersion: v1 kind: Pod metadata: name: nginx labels: app: nginx spec: containers: - name: nginx-container image: nginx 참고로 apiVersion 과 kind 값으로는 아래처럼 다양하게 설정 가능하다. apiVersion kind v1 Pod v1 Service apps/v1 ReplicaSet apps/v1 Deployment kubectl apply 로 pod...