setup-cicd
The setup-cicd
command is a powerful utility that automates the deployment of your complete CI/CD infrastructure, configuring your Google Cloud projects and GitHub repository in a single operation. It intelligently adapts to your project's configuration, supporting both Google Cloud Build and GitHub Actions as CI/CD runners.
⚡️ Quick Start Example:
Getting started is straightforward. From the root of your generated agent project, run the following command. The tool will guide you through the process.
You can use the pip
workflow for a traditional setup, or uvx
to create a project in a single command without a permanent install.
uvx agent-starter-pack setup-cicd
agent-starter-pack setup-cicd
(You will be prompted for Staging and Production project IDs)
Alternatively, you can provide the project IDs and other details directly as flags:
uvx agent-starter-pack setup-cicd \
--staging-project your-staging-project-id \
--prod-project your-prod-project-id \
--repository-name my-awesome-agent
⚠️ Important Considerations:
- Run from Project Root: This command must be executed from the root directory of your generated agent project (the directory containing
pyproject.toml
). - Production Use: This command is designed to set up a production-ready CI/CD pipeline. However, for highly customized or complex production environments, you may want to review the generated Terraform configuration in
deployment/terraform
before applying.
Prerequisites
Required Tools:
uvx
oragent-starter-pack
: The command is part of the starter pack CLI.- Terraform: Required for infrastructure provisioning.
gh
CLI (GitHub CLI): The tool uses the GitHub CLI to interact with your repository.- Authentication: You must be authenticated. Run
gh auth login
. - Required Scopes: Your GitHub token needs the
repo
andworkflow
scopes to create repositories and set up CI/CD. The tool will check for these scopes and guide you if they are missing.
- Authentication: You must be authenticated. Run
gcloud
CLI (Google Cloud SDK): Required for interacting with Google Cloud.- Authentication: You must be authenticated. Run
gcloud auth application-default login
.
- Authentication: You must be authenticated. Run
Google Cloud Projects: You need at least two Google Cloud projects: one for
staging
and one forproduction
. You also need a project to host the CI/CD resources (e.g., Cloud Build, Artifact Registry, Terraform state). You can specify this using--cicd-project
. If omitted, the production project will be used for CI/CD resources.Permissions: The user or service account running this command must have the
Owner
role on the specified Google Cloud projects. This is necessary for creating resources and assigning IAM roles.
How it Works
The setup-cicd
command performs the following steps automatically:
- CI/CD Runner Detection: It inspects your project's structure to automatically detect whether you are using Google Cloud Build or GitHub Actions.
- GitHub Integration: It prompts you to create a new private GitHub repository or connect to an existing one.
- Project ID Confirmation: It prompts for Staging and Production project IDs if they are not provided as flags.
- Infrastructure Setup (Terraform):
- It configures and applies the Terraform scripts located in
deployment/terraform
. - For Google Cloud Build: It sets up a Cloud Build connection to your GitHub repository, either interactively or programmatically (if a GitHub PAT is provided).
- For GitHub Actions: It configures Workload Identity Federation (WIF) to allow GitHub Actions to securely authenticate with Google Cloud without service account keys. It also creates the necessary secrets and variables in your GitHub repository.
- By default, it sets up remote Terraform state management using a Google Cloud Storage (GCS) bucket. Use
--local-state
to opt-out.
- It configures and applies the Terraform scripts located in
- Resource Deployment: It runs
terraform apply
to create all the necessary resources in your Google Cloud projects. - Local Git Setup: It initializes a Git repository locally (if needed) and adds your GitHub repository as the
origin
remote.
Running the Command
uvx agent-starter-pack setup-cicd \
[--staging-project <YOUR_STAGING_PROJECT_ID>] \
[--prod-project <YOUR_PROD_PROJECT_ID>] \
[--cicd-project <YOUR_CICD_PROJECT_ID>] \
[--dev-project <YOUR_DEV_PROJECT_ID>] \
[--region <GCP_REGION>] \
[--repository-name <GITHUB_REPO_NAME>] \
[--repository-owner <GITHUB_USERNAME_OR_ORG>] \
[--local-state] \
[--auto-approve] \
[--debug]
Key Options:
--staging-project
,--prod-project
: Required Information. Your Google Cloud project IDs for staging and production environments. The command will prompt for these if the flags are omitted.--cicd-project
: (Optional) Project ID for hosting CI/CD resources. If omitted, defaults to the production project ID.--dev-project
: (Optional) Project ID for a dedicated development environment.--region
: (Optional) GCP region for resources (default:us-central1
).--repository-name
,--repository-owner
: (Optional) Details for your GitHub repository. If omitted, you'll be prompted.--local-state
: (Optional) Use local files for Terraform state instead of the default GCS backend.--auto-approve
: (Optional) Skip all interactive prompts.--debug
: (Optional) Enable verbose logging for troubleshooting.
(For advanced programmatic use with Google Cloud Build, see options like --github-pat
, --github-app-installation-id
, and --host-connection-name
by running uvx agent-starter-pack setup-cicd --help
)
After Running the Command
To trigger your new CI/CD pipeline, you need to commit and push your code:
git add .
git commit -m "Initial commit of agent starter pack"
git push -u origin main
After pushing, you can verify the created resources and running pipelines in your GitHub repository and Google Cloud projects.