Google Artifact Registry는 비공개적이고 안전하며 확장 가능한 방식으로 Python 패키지 아티팩트를 관리하고 호스팅하기 위한 강력한 솔루션입니다. 이 가이드에서는 인증을 위해 Google Cloud Build 및 Google Secret Manager의 비밀(creds)을 사용하여 Python 패키지 .whl 파일을 Artifact Registry에 푸시하는 단계별 안내를 제공합니다.
아티팩트 레지스트리 설정:
gcloud artifacts repositories create python-packages \ --repository-format=python \ --location=us-central1 \ --description="Python packages repository"
비밀 설정:
gcloud secrets create creds --data-file=path/to/key.json
Cloud Build에 보안 비밀에 대한 액세스 권한 부여:(선택 사항, IAM을 사용하여 수행할 수도 있음)
gcloud secrets add-iam-policy-binding creds \ --member="serviceAccount:$(gcloud projects describe $PROJECT_ID --format='value(projectNumber)')@cloudbuild.gserviceaccount.com" \ --role="roles/secretmanager.secretAccessor"
전체 작동 cloudbuild.yaml 파일은 다음과 같습니다.
options: machineType: E2_HIGHCPU_8 substitutionOption: ALLOW_LOOSE logging: CLOUD_LOGGING_ONLY steps: # Step 1: Access the secret `creds` and save it as `key.json` - name: 'gcr.io/google.com/cloudsdktool/cloud-sdk' entrypoint: bash args: - '-c' - | gcloud secrets versions access latest --secret=creds > /workspace/key.json # Step 2: Configure `.pypirc` with the Artifact Registry credentials - name: 'python' entrypoint: bash args: - '-c' - | cat > ~/.pypirc << EOL [distutils] index-servers = tower-common-repo [tower-common-repo] repository: https://us-central1-python.pkg.dev/$PROJECT_ID/python-packages/ username: _json_key_base64 password: $(base64 -w0 /workspace/key.json) EOL # Step 3: Build and upload the Python package pip install twine build && \ python -m build && \ twine upload --repository tower-common-repo dist/* --verbose
빌드 옵션 정의:
key.json 비밀 검색:
.pypirc 구성:
패키지 구축 및 푸시:
cloudbuild.yaml 파일을 저장하고 빌드를 트리거하거나 github 저장소에 연결할 수 있습니다.
gcloud artifacts repositories create python-packages \ --repository-format=python \ --location=us-central1 \ --description="Python packages repository"
빌드 완료 후:
gcloud secrets create creds --data-file=path/to/key.json
위 내용은 Cloud Build를 사용하여 Python 패키지를 Artifact Registry로 푸시의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!