You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 15 Next »


목차

 

Pod 개요

  • 쿠버네티스에서 생성하고 관리할 수 있는 배포 가능한 가장 작은 컴퓨팅 단위

Pod Manifest

apiVersion: v1
kind: Pod
metadata:
  name: nginx
spec:
  containers:
  - name: nginx
    image: nginx:1.14.2
    ports:
    - containerPort: 80


https://dev-k8sref-io.web.app/docs/workloads/pod-v1/

  • apiVersion: 쿠버네티스 API버전을 가리킴

  • kind: 리소스 유형

  • metadata (ObjectMeta): 포드와 관련된 이름, 네임스페이스, 라벨, 그밖의 정보

  • spec (PodSpec): 컨테이너, 볼륨등의 정보

  • status : 포드의 상태, 각 컨테이너의 설명 및 상태, 포드 내부의 IP 및 그밖의 기본 정보 등



Pod Lifecycle

https://kimjingo.tistory.com/137

 



  • No labels