9.5. Kubernetes 배포 지원
9.5.1. 배포 오브젝트 유형
Kubernetes는 deployments 라는 OpenShift Container Platform에서 최상위 오브젝트 유형을 제공합니다. 이 개체 유형은 구분을 위해 Kubernetes 배포로 참조되는 경우 배포 구성 개체 유형의 하위 항목입니다.
배포 구성과 마찬가지로 Kubernetes 배포는 특정 애플리케이션 구성 요소의 원하는 상태를 Pod 템플릿으로 설명합니다. Kubernetes 배포는 Pod 라이프사이클을 오케스트레이션하는 복제본 세트 ( 복제 컨트롤러반복)를 생성합니다.
예를 들어 Kubernetes 배포의 이 정의에서는 하나의 hello-openshift pod를 가져오는 복제본 세트를 생성합니다.
Kubernetes 배포 정의 hello-openshift-deployment.yaml의 예
apiVersion: apps/v1 kind: Deployment metadata: name: hello-openshift spec: replicas: 1 selector: matchLabels: app: hello-openshift template: metadata: labels: app: hello-openshift spec: containers: - name: hello-openshift image: openshift/hello-openshift:latest ports: - containerPort: 80
정의를 로컬 파일에 저장한 후 이를 사용하여 Kubernetes 배포를 생성할 수 있습니다.
$ oc create -f hello-openshift-deployment.yaml
CLI를 사용하여 Common Operations 에 설명된 대로 Kubernetes 배포 및 복제본 세트(예: get
및 describe
)를 검사하고 작동할 수 있습니다. 오브젝트 유형의 경우 배포를
사용하거나 Kubernetes 배포 및 복제본 세트
또는 rs
에 대해 복제본 세트를 배포합니다
.
CLI 사용 예제에서 kubectl
에 대해 oc
를 대체하는 Deployments 및 Replica Sets 에 대한 자세한 내용은 Kubernetes 설명서를 참조하십시오.