GitHub Operations
The following document contains information on various GitHub integration procedures.
Configuring Github App
Sometimes, we need to give one repository CI/CD access to another repository. However, if
the target repository is private, the CI/CD pipeline will not have access to it, even if we
try to use the GITHUB_TOKEN
in the CI/CD steps.
To overcome this limitation, we need to explicitly configure the access. One way to achieve this is by using a GitHub App.
- Go to the organization settings
- Create new app by clicking "New Github App"
- Fill the name and Homepage URL (can be https://github.com/archipelo)
- Unselect "Webhook" checkbox
- Expand "Repository permissions" and change "Contents" permission to "read-only"
- Click Generate private key and download the file. Copy full content of the file to clipboard (all text including header and footer).
- Go to
https://github.com/organizations/archipelo/settings/apps/<NAME OF THE APP>/installations
- Click install button and choose either All repositories or only select subset of repos
- Go to https://github.com/Archipelo/top/settings/secrets/actions
- Click "New repository secret"
- Add secret name (e.g. APP_KEY)
- Paste the key taken from point 6 and click "Add secret"
Adding Deployment to New Repository
Access to GCP project from GitHub is controled by using federated identities via the Workload Identity Federation.
In order to add new GitHub repository, so that it can access resources in GCP, such as Docker repository and deploy the artifacts the repository must be added to the workload identity pool.
In order to add a new repository the following command should be issued:
gcloud iam service-accounts add-iam-policy-binding \
"IDENTITY_ACCOUNT" \
--role="roles/iam.workloadIdentityUser" \
--member="principalSet://iam.googleapis.com/projects/PROJECT_ID/locations/global/workloadIdentityPools/IDENTITY_POOL/attribute.repository/Archipelo/REPOSITORY_NAME"
The IDENTITY_ACCOUNT
is one of the following values:
- dev -
github-deployment-dev@archipelo-dev.iam.gserviceaccount.com
- qa -
github-deployment-qa@archipelo-qa.iam.gserviceaccount.com
The PROJECT_ID
is one of the following values:
- dev -
709267376921
- qa -
512550308738
The IDENTITY_POOL
is one of the following values:
- dev -
github-pool-dev-5ac96a00
- qa -
github-pool-qa-07c5eba2
The REPOSITORY_NAME
is the new repository name we would like to add.