애저 쿠버네티스로 앱 무작정 구축하기(투~)
페이지 정보
작성자 조선제일검 작성일 22-07-22 00:44 조회 3,153 댓글 0본문
Azure 리소스 생성
6. Azure CLI로 ACR(ACR ; Azure Create Resource) 생성
ACR은 이미지를 저장하는 것만이 아니라 자동으로 빌드하며 애저 환경이 저장되는 곳
으로 유니크한 레지스트리명을 사용해야 한다.
레지스트리명 체크
az acr check-name -n ACR”USER” Name
ACR리소스명 할당
ACR_NAME=ACR"$USER"Name
ACR리소스그룹명 할당
ACR_RES_GROUP=ACR"$USER"ResGroup
echo $ACR_NAME
echo $ACR_RES_GROUP
az group create --resource-group $ACR_RES_GROUP --location koreacentral
리소스 그룹 생성 시 SKU 지정
az acr create --resource-group $ACR_RES_GROUP --name $ACR_NAME --sku Standard --location koreacentral
깃 동기화
git clone https://github.com/hali-linux/webpage.git
7. Azure ACR을 이용한 이미지 빌드
깃허브에서 다운받은 애플리케이션을 Azure 레파지토리에 업로드
az acr build --registry $ACR_NAME --image website:v1.0 webpage/
댓글목록 0
등록된 댓글이 없습니다.