Skill: Agent Engine & Cloud Run Deployment
This skill covers professional patterns for deploying ADK agents onto Google Cloud serverless infrastructures.
1. Deployment CLI Commands
- Deploy to Agent Engine specifying the target project and location directly:
adk deploy --project YOUR_PROJECT_ID --region us-central1 - Troubleshooting: If you experience a 404 Model Availability error, verify that the active model in your
agent.pyis enabled in the specific region (us-central1).
2. Binary Dependencies (Cloud Build)
- If your agent depends on complex OS-level libraries (e.g., for audio streaming or document translation), verify that the
.dockerignoredoesn't block required system binaries. - Use a custom
cloudbuild.yamlto stage custom system libraries when packaging for Cloud Run.