Skip to content

Commit

Permalink
Merge pull request #2842 from nick-stroud/update_repo_ref
Browse files Browse the repository at this point in the history
Point cloud build trigger provisioning to new github repo name
  • Loading branch information
alyssa-sm authored Aug 2, 2024
2 parents 734cef1 + 7c8fcc7 commit 62ad190
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tools/cloud-build/provision/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ When prompted for project, use integration test project.
|------|-------------|------|---------|:--------:|
| <a name="input_project_id"></a> [project\_id](#input\_project\_id) | GCP project ID | `string` | `"hpc-toolkit-dev"` | no |
| <a name="input_region"></a> [region](#input\_region) | GCP region | `string` | `"us-central1"` | no |
| <a name="input_repo_uri"></a> [repo\_uri](#input\_repo\_uri) | URI of GitHub repo | `string` | `"https://github.com/GoogleCloudPlatform/hpc-toolkit"` | no |
| <a name="input_repo_uri"></a> [repo\_uri](#input\_repo\_uri) | URI of GitHub repo | `string` | `"https://github.com/GoogleCloudPlatform/cluster-toolkit"` | no |
| <a name="input_zone"></a> [zone](#input\_zone) | GCP zone | `string` | `"us-central1-c"` | no |

## Outputs
Expand Down
2 changes: 1 addition & 1 deletion tools/cloud-build/provision/pr-go-build-test.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "google_cloudbuild_trigger" "pr_go_build_test" {

github {
owner = "GoogleCloudPlatform"
name = "hpc-toolkit"
name = "cluster-toolkit"
pull_request {
branch = ".*"
comment_control = "COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY"
Expand Down
2 changes: 1 addition & 1 deletion tools/cloud-build/provision/pr-ofe-test.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource "google_cloudbuild_trigger" "pr_ofe_test" {

github {
owner = "GoogleCloudPlatform"
name = "hpc-toolkit"
name = "cluster-toolkit"
pull_request {
branch = ".*"
comment_control = "COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY"
Expand Down
2 changes: 1 addition & 1 deletion tools/cloud-build/provision/pr-ofe.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ resource "google_cloudbuild_trigger" "pr_ofe_venv" {

github {
owner = "GoogleCloudPlatform"
name = "hpc-toolkit"
name = "cluster-toolkit"
pull_request {
branch = ".*"
comment_control = "COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY"
Expand Down
2 changes: 1 addition & 1 deletion tools/cloud-build/provision/pr-tests.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ resource "google_cloudbuild_trigger" "pr_test" {

github {
owner = "GoogleCloudPlatform"
name = "hpc-toolkit"
name = "cluster-toolkit"
pull_request {
branch = ".*"
comment_control = "COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY"
Expand Down
2 changes: 1 addition & 1 deletion tools/cloud-build/provision/pr-validation.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ resource "google_cloudbuild_trigger" "pr_validation" {

github {
owner = "GoogleCloudPlatform"
name = "hpc-toolkit"
name = "cluster-toolkit"
pull_request {
branch = ".*"
comment_control = "COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY"
Expand Down
2 changes: 1 addition & 1 deletion tools/cloud-build/provision/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ variable "zone" {
variable "repo_uri" {
description = "URI of GitHub repo"
type = string
default = "https://github.com/GoogleCloudPlatform/hpc-toolkit"
default = "https://github.com/GoogleCloudPlatform/cluster-toolkit"
}

0 comments on commit 62ad190

Please sign in to comment.