Heim >Backend-Entwicklung >Python-Tutorial >Python-Pakete mit Cloud Build an Artifact Registry übertragen
Google Artifact Registry ist eine leistungsstarke Lösung zum privaten, sicheren und skalierbaren Verwalten und Hosten von Python-Paketartefakten. Diese Anleitung bietet eine Schritt-für-Schritt-Anleitung zum Übertragen von .whl-Dateien des Python-Pakets in die Artifact Registry mithilfe von Google Cloud Build und einem Geheimnis (Creds) von Google Secret Manager zur Authentifizierung.
Artefaktregistrierungs-Setup:
gcloud artifacts repositories create python-packages \ --repository-format=python \ --location=us-central1 \ --description="Python packages repository"
Geheimes Setup:
gcloud secrets create creds --data-file=path/to/key.json
Gewähren Sie Cloud Build-Zugriff auf das Geheimnis: (Optional, kann auch mit IAM erfolgen)
gcloud secrets add-iam-policy-binding creds \ --member="serviceAccount:$(gcloud projects describe $PROJECT_ID --format='value(projectNumber)')@cloudbuild.gserviceaccount.com" \ --role="roles/secretmanager.secretAccessor"
Hier ist die vollständig funktionierende cloudbuild.yaml-Datei:
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
Build-Optionen definieren:
key.json Secret abrufen:
.pypirc konfigurieren:
Paket erstellen und pushen:
Speichern Sie die Datei cloudbuild.yaml und lösen Sie den Build aus oder stellen Sie eine Verbindung zum Github-Repository her:
gcloud artifacts repositories create python-packages \ --repository-format=python \ --location=us-central1 \ --description="Python packages repository"
Nach Abschluss des Builds:
gcloud secrets create creds --data-file=path/to/key.json
Das obige ist der detaillierte Inhalt vonPython-Pakete mit Cloud Build an Artifact Registry übertragen. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!