Skip to content

Commit

Permalink
Start forwarding web traffic to cloud run (#2206)
Browse files Browse the repository at this point in the history
Stage 1: 90% to App Engine, 10% to Cloud Run
  • Loading branch information
michaelkedar committed May 14, 2024
1 parent 1331436 commit 0df60e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deployment/terraform/modules/osv/website.tf
Original file line number Diff line number Diff line change
Expand Up @@ -184,14 +184,14 @@ resource "google_compute_url_map" "website" {
prefix_match = "/"
}
route_action {
# TODO(michaelkedar): adjust weights, then remove appengine fully migrated
# TODO(michaelkedar): remove appengine when fully migrated
weighted_backend_services {
backend_service = module.gclb.backend_services.appengine.id
weight = 100
weight = 90
}
weighted_backend_services {
backend_service = module.gclb.backend_services.cloudrun.id
weight = 0
weight = 10
}
}
}
Expand Down

0 comments on commit 0df60e2

Please sign in to comment.