本页介绍了如何将 GitHub Enterprise 代码库连接到 Cloud Build。如需详细了解 Cloud Build 仓库,请参阅 Cloud Build 仓库。
准备工作
-
Enable the Cloud Build and Secret Manager APIs.
- 按照说明连接 GitHub Enterprise 主机。
- 确保您对要为其启用 GitHub Enterprise 触发器的代码库具有管理员访问权限。
连接到 GitHub Enterprise 代码库
控制台
如需将 GitHub Enterprise 代码库连接到主机连接,请完成以下步骤:
打开 Google Cloud 控制台中的制品库页面。
您将看到代码库页面。
在页面顶部,选择第 2 代标签页。
点击关联代码库,关联您连接中的代码库。
您将看到关联代码库面板。
在关联代码库面板中,输入以下信息:
- 连接:从下拉菜单中选择一个连接。
代码库:选择要关联到您的连接的代码库。
代码库名称:输入代码库的名称。
- Generated:为 Cloud Build 选择此选项后,Cloud Build 会代表您自动为所选代码库生成代码库名称。
手动:选择此选项可手动为所选代码库指定名称。
如果选择人工,您可以修改 代码库名称部分中选择的代码库。
点击关联,将您的代码库与您的连接相关联。
您现在已成功将 GitHub Enterprise 代码库关联到您的连接。
gcloud
如需将 GitHub Enterprise 代码库添加到您的连接,请输入以下内容 命令:
gcloud builds repositories create REPO_NAME \
--remote-uri=REPO_URI \
--connection=CONNECTION_NAME --region=REGION
其中:
- REPO_NAME 是代码库的名称。
- REPO_URI 是指向您的 GitHub 代码库的链接。
- CONNECTION_NAME 是连接的名称。
- REGION 是您的连接的区域。
您现在已将代码库关联到 GitHub Enterprise 连接。
Terraform
如需将 GitHub Enterprise 代码库添加到您的连接,请添加以下内容 添加到 Terraform 配置中的代码段:
resource "google_cloudbuildv2_repository" "my-repository" {
project = "PROJECT_ID"
name = "REPO_NAME"
location = :REGION"
parent_connection = google_cloudbuildv2_connection.my-connection.name
remote_uri = "REMOTE_URI'
}
其中:
- PROJECT_ID 是您的 Google Cloud 项目 ID。
- REPO_NAME 是您的 GitHub 代码库的名称。
- REGION 是连接的区域。
- URI 是代码库的远程 URI。例如
https://github.com/myuser/myrepo.git
。
现在,您已将代码库关联到 GitHub 连接。