You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -420,8 +420,8 @@ If your RE Server uses RPC authentication then use one of the following flags:
420
420
***credential_file** - The name of a file that contains service account
421
421
credentials to use when calling remote execution. Used only if
422
422
`-use_application_default_credentials` and `-use_gce_credentials` are false.
423
-
***experimental_credentials_helper** - Path to the credentials helper binary. If given `execrel://`, looks for the `credshelper` binary in the same folder as bootstrap/reproxy
424
-
***experimental_credentials_helper_args** - Arguments for the experimental credentials helper, separated by space
423
+
***credentials_helper** - Path to the credentials helper binary. If given `execrel://`, looks for the `credshelper` binary in the same folder as bootstrap/reproxy
424
+
***credentials_helper_args** - Arguments for the credentials helper, separated by space
425
425
426
426
The reproxy is typically started via the bootstrap, so it is recommended to
427
427
avoid configuring it through the command line flags. It's advised to use
Copy file name to clipboardexpand all lines: cmd/bootstrap/main.go
+24-38
Original file line number
Diff line number
Diff line change
@@ -58,31 +58,29 @@ var (
58
58
)
59
59
60
60
var (
61
-
proxyLogDir []string
62
-
serverAddr=flag.String("server_address", "", "The server address in the format of host:port for network, or unix:///file for unix domain sockets.")
63
-
reProxy=flag.String("re_proxy", reproxyDefaultPath(), "Location of the reproxy binary")
64
-
waitSeconds=flag.Int("reproxy_wait_seconds", 20, "Number of seconds to wait for reproxy to start")
65
-
shutdown=flag.Bool("shutdown", false, "Whether to shut down the proxy and dump the stats.")
66
-
shutdownSeconds=flag.Int("shutdown_seconds", 60, "Number of seconds to wait for reproxy to shutdown")
67
-
logFormat=flag.String("log_format", "text", "Format of proxy log. Currently only text and reducedtext are supported.")
68
-
logPath=flag.String("log_path", "", "DEPRECATED. Use proxy_log_dir instead. If provided, the path to a log file of all executed records. The format is e.g. text://full/file/path.")
69
-
fastLogCollection=flag.Bool("fast_log_collection", false, "Enable optimized log aggregation pipeline. Does not work for multileg builds")
70
-
asyncReproxyShutdown=flag.Bool("async_reproxy_termination", false, "Allows reproxy to finish shutdown asyncronously. Only applicable with fast_log_collection=true")
71
-
metricsProject=flag.String("metrics_project", "", "If set, action and build metrics are exported to Cloud Monitoring in the specified GCP project")
72
-
outputDir=flag.String("output_dir", os.TempDir(), "The location to which stats should be written.")
73
-
useADC=flag.Bool(auth.UseAppDefaultCredsFlag, false, "Indicates whether to use application default credentials for authentication")
74
-
useGCE=flag.Bool(auth.UseGCECredsFlag, false, "Indicates whether to use GCE VM credentials for authentication")
75
-
useExternalToken=flag.Bool(auth.UseExternalTokenFlag, false, "Indicates whether to use an externally provided token for authentication")
76
-
serviceNoAuth=flag.Bool(auth.ServiceNoAuthFlag, false, "If true, do not authenticate with RBE.")
77
-
credFile=flag.String(auth.CredentialFileFlag, "", "The name of a file that contains service account credentials to use when calling remote execution. Used only if --use_application_default_credentials and --use_gce_credentials are false.")
78
-
remoteDisabled=flag.Bool("remote_disabled", false, "Whether to disable all remote operations and run all actions locally.")
79
-
cacheDir=flag.String("cache_dir", "", "Directory from which to load the cache files at startup and update at shutdown.")
80
-
metricsUploader=flag.String("metrics_uploader", defaultMetricsUploader(), "Path to the metrics uploader binary.")
81
-
logHTTPCalls=flag.Bool("log_http_calls", false, "Log all http requests made with the default http client.")
82
-
experimentalCredentialsHelper=flag.String(auth.CredshelperPathFlag, "", "Path to the credentials helper binary. If given execrel://, looks for the `credshelper` binary in the same folder as bootstrap")
83
-
experimentalCredentialsHelperArgs=flag.String(auth.CredshelperArgsFlag, "", "Arguments for the experimental credentials helper, separated by space.")
84
-
credentialsHelper=flag.String(credshelper.CredshelperPathFlag, "", "Path to the credentials helper binary. If given execrel://, looks for the `credshelper` binary in the same folder as bootstrap")
85
-
credentialsHelperArgs=flag.String(credshelper.CredshelperArgsFlag, "", "Arguments for the credentials helper, separated by space.")
61
+
proxyLogDir []string
62
+
serverAddr=flag.String("server_address", "", "The server address in the format of host:port for network, or unix:///file for unix domain sockets.")
63
+
reProxy=flag.String("re_proxy", reproxyDefaultPath(), "Location of the reproxy binary")
64
+
waitSeconds=flag.Int("reproxy_wait_seconds", 20, "Number of seconds to wait for reproxy to start")
65
+
shutdown=flag.Bool("shutdown", false, "Whether to shut down the proxy and dump the stats.")
66
+
shutdownSeconds=flag.Int("shutdown_seconds", 60, "Number of seconds to wait for reproxy to shutdown")
67
+
logFormat=flag.String("log_format", "text", "Format of proxy log. Currently only text and reducedtext are supported.")
68
+
logPath=flag.String("log_path", "", "DEPRECATED. Use proxy_log_dir instead. If provided, the path to a log file of all executed records. The format is e.g. text://full/file/path.")
69
+
fastLogCollection=flag.Bool("fast_log_collection", false, "Enable optimized log aggregation pipeline. Does not work for multileg builds")
70
+
asyncReproxyShutdown=flag.Bool("async_reproxy_termination", false, "Allows reproxy to finish shutdown asyncronously. Only applicable with fast_log_collection=true")
71
+
metricsProject=flag.String("metrics_project", "", "If set, action and build metrics are exported to Cloud Monitoring in the specified GCP project")
72
+
outputDir=flag.String("output_dir", os.TempDir(), "The location to which stats should be written.")
73
+
useADC=flag.Bool(auth.UseAppDefaultCredsFlag, false, "Indicates whether to use application default credentials for authentication")
74
+
useGCE=flag.Bool(auth.UseGCECredsFlag, false, "Indicates whether to use GCE VM credentials for authentication")
75
+
useExternalToken=flag.Bool(auth.UseExternalTokenFlag, false, "Indicates whether to use an externally provided token for authentication")
76
+
serviceNoAuth=flag.Bool(auth.ServiceNoAuthFlag, false, "If true, do not authenticate with RBE.")
77
+
credFile=flag.String(auth.CredentialFileFlag, "", "The name of a file that contains service account credentials to use when calling remote execution. Used only if --use_application_default_credentials and --use_gce_credentials are false.")
78
+
remoteDisabled=flag.Bool("remote_disabled", false, "Whether to disable all remote operations and run all actions locally.")
79
+
cacheDir=flag.String("cache_dir", "", "Directory from which to load the cache files at startup and update at shutdown.")
80
+
metricsUploader=flag.String("metrics_uploader", defaultMetricsUploader(), "Path to the metrics uploader binary.")
81
+
logHTTPCalls=flag.Bool("log_http_calls", false, "Log all http requests made with the default http client.")
82
+
credentialsHelper=flag.String(credshelper.CredshelperPathFlag, "", "Path to the credentials helper binary. If given execrel://, looks for the `credshelper` binary in the same folder as bootstrap")
83
+
credentialsHelperArgs=flag.String(credshelper.CredshelperArgsFlag, "", "Arguments for the credentials helper, separated by space.")
0 commit comments