summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Kousik Kumar <kousikk@google.com> 2024-02-01 16:17:45 +0000
committer Kousik Kumar <kousikk@google.com> 2024-02-01 16:17:45 +0000
commitbe2c98d08cd76991e5dd69f72e63e16b5bf9fb4d (patch)
treebdf9f55f478c9e02bf6298b197e3252007f8bb62
parentf166df7efda4583a94469769c310622d6368cd0b (diff)
Allowlist gcloud to be run during the build
We obtain credentials for RBE through gcloud in case of builds on glapstations (i.e., glinux workstations at home). Hence gcloud needs to be able to run during the build for this credential fetching to work. Related: https://b.corp.google.com/issues/320962825#comment11 Also, we no longer use prodcertstatus, so I've removed it from the allowlist. Bug: b/320962825 Change-Id: I97ee7d53b2f490ba81ce94d13eaecb4e6a311914 Tested: ran a build on glinux workstation at home to confirm
-rw-r--r--ui/build/paths/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/build/paths/config.go b/ui/build/paths/config.go
index 65e2c8ebc..2f25a8ce5 100644
--- a/ui/build/paths/config.go
+++ b/ui/build/paths/config.go
@@ -93,6 +93,7 @@ var Configuration = map[string]PathConfig{
"fuser": Allowed,
"gcert": Allowed,
"gcertstatus": Allowed,
+ "gcloud": Allowed,
"getopt": Allowed,
"git": Allowed,
"hexdump": Allowed,
@@ -101,7 +102,6 @@ var Configuration = map[string]PathConfig{
"javap": Allowed,
"lsof": Allowed,
"openssl": Allowed,
- "prodcertstatus": Allowed,
"pstree": Allowed,
"rsync": Allowed,
"sh": Allowed,