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

Compare with Current View Page History

« Previous Version 8 Next »


목차

 


개요

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

Pod Definition

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

Pod Lifecycle


  • No labels