애저 쿠버네티스로 앱 무작정 구축하기(뽀~)
페이지 정보
작성자 조선제일검 작성일 22-07-24 01:02 조회 3,099 댓글 0본문
10. manifest
매니페스트 파일은 클러스터에 애플리케이션을 배포하여 컨테이너를 몇 개 배포할지,
네트워크 구성과 관련된 부분을 정의하는 선언적 설정을 의미한다.
first-deployment.yaml
------------------------------
apiVersion: apps/v1
kind: Deployment
metadata:
name: first-deployment
spec:
replicas: 5
selector:
matchLabels:
app: first-view
template:
metadata:
labels:
app: first-view
env: test
spec:
containers:
- image: acrsplunkname.azurecr.io/website:v1.0
&sp;name: first-container
ports:
댓글목록 0
등록된 댓글이 없습니다.