summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2021-01-06 15:36:23 -0800
committergVisor bot <gvisor-bot@google.com>2021-01-06 15:44:07 -0800
commitfa8682da0fd43556ae0a405c02bac27e6d15a8e6 (patch)
tree7ff8382863d3f8b753589d93d119ce36efd20ac4 /Makefile
parentf89af8b5045bfdcb24ce8cc74ed676d77c9e67a6 (diff)
Export a pprof visualization endpoint.
This allows us to link directly to profiling results from the build results. The code uses the standard pprof http server, exported from the Cloud Run instance. PiperOrigin-RevId: 350440910
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e7d4434f3..9f3bd6c88 100644
--- a/Makefile
+++ b/Makefile
@@ -389,7 +389,7 @@ website-push: website-build ## Push a new image and update the service.
.PHONY: website-push
website-deploy: website-push ## Deploy a new version of the website.
- @gcloud run deploy $(WEBSITE_SERVICE) --platform=managed --region=$(WEBSITE_REGION) --project=$(WEBSITE_PROJECT) --image=$(WEBSITE_IMAGE)
+ @gcloud run deploy $(WEBSITE_SERVICE) --platform=managed --region=$(WEBSITE_REGION) --project=$(WEBSITE_PROJECT) --image=$(WEBSITE_IMAGE) --memory 1Gi
.PHONY: website-deploy
##