ACR(3)
-
ACR 접속 secret 생성
Secret 없이 Token이 셋팅된 ACR에 접속Failed to pull image "{ACR 이름}.io/{image 이름}:{image 태그}": Error response from daemon: Head "https://{ACR 이름}.io/v2/{image 이름}/manifests/{image 태그}": unauthorized: authentication requiredSecret 생성https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ Pull an Image from a Private RegistryThis page shows how to create a Pod that uses a Secr..
2024.03.05 -
ACR Token 만들기
HOME > Container Registries > Tokens Add Token 이름과 원하는 권한을 선택 Token 비밀번호 생성 만기일은 옵션
2024.03.05 -
Azure DevOps Pipeline 주요 내용
변수 적용 및 사용https://learn.microsoft.com/ko-kr/azure/devops/pipelines/process/variables?view=azure-devops&tabs=yaml%2Cbatch 변수 정의 - Azure Pipelines변수는 파이프라인에서 사용하기 위해 사용자가 정의한 이름-값 쌍입니다. 변수를 태스크 및 스크립트에 대한 입력으로 사용할 수 있습니다.learn.microsoft.com variables: - name: projectName value: contososteps: - bash: echo $(projectName)- powershell: echo $(projectName)- script: echo $(projectName)--kubeconfig 옵션 ..
2024.03.05