Skip to content

Commit 4017a6c

Browse files
banikharbandacopybara-github
authored andcommitted
Remove experimental credshelper flags
Bug: b/370793522 Test: Tested locally with chromium build Change-Id: I0121372300e2f1c3967faacd6de38d6ce6c0ac0b GitOrigin-RevId: a77e2285eff262cf4128794f433d809cf6a0c47a
1 parent 5132ea9 commit 4017a6c

File tree

3 files changed

+26
-44
lines changed

3 files changed

+26
-44
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -420,8 +420,8 @@ If your RE Server uses RPC authentication then use one of the following flags:
420420
* **credential_file** - The name of a file that contains service account
421421
credentials to use when calling remote execution. Used only if
422422
`-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
425425

426426
The reproxy is typically started via the bootstrap, so it is recommended to
427427
avoid configuring it through the command line flags. It's advised to use

cmd/bootstrap/main.go

+24-38
Original file line numberDiff line numberDiff line change
@@ -58,31 +58,29 @@ var (
5858
)
5959

6060
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.")
8684
)
8785

8886
func main() {
@@ -136,14 +134,7 @@ func main() {
136134
}
137135

138136
var ts *grpcOauth.TokenSource
139-
credsArgs := []string{}
140137
if !*remoteDisabled {
141-
if *experimentalCredentialsHelper != "" && *credentialsHelper == "" {
142-
*credentialsHelper = *experimentalCredentialsHelper
143-
*credentialsHelperArgs = *experimentalCredentialsHelperArgs
144-
credsArgs = append(credsArgs, fmt.Sprintf("--%v=%v", credshelper.CredshelperPathFlag, *credentialsHelper))
145-
credsArgs = append(credsArgs, fmt.Sprintf("--%v=%v", credshelper.CredshelperArgsFlag, *credentialsHelperArgs))
146-
}
147138
if *credentialsHelper != "" {
148139
c, err := credshelper.NewExternalCredentials(*credentialsHelper, strings.Fields(*credentialsHelperArgs))
149140
if err != nil {
@@ -241,9 +232,8 @@ func main() {
241232
}
242233

243234
currArgs := args[:]
244-
if *experimentalCredentialsHelper != "" || *credentialsHelper != "" {
235+
if *credentialsHelper != "" {
245236
currArgs = append(currArgs, "--use_external_auth_token=true")
246-
currArgs = append(currArgs, credsArgs...)
247237
}
248238
msg, exitCode := bootstrapReproxy(currArgs, bootstrapStart)
249239
if exitCode == 0 {
@@ -343,10 +333,6 @@ func bootstrapReproxy(args []string, startTime time.Time) (string, int) {
343333
}
344334

345335
func authMechanism() auth.Mechanism {
346-
if *experimentalCredentialsHelper != "" {
347-
fmt.Fprintf(os.Stderr, "--experimental_credentials_helper flags are deprecated, please use --credentials_helper flags")
348-
os.Exit(auth.ExitCodeExternalTokenAuth)
349-
}
350336
m, err := auth.MechanismFromFlags()
351337
if err != nil || m == auth.Unknown {
352338
log.Errorf("Failed to determine auth mechanism: %v", err)

internal/pkg/auth/auth.go

-4
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,6 @@ func (m Mechanism) String() string {
8181
}
8282

8383
const (
84-
// CredshelperPathFlag is the path to the credentials helper binary.
85-
CredshelperPathFlag = "experimental_credentials_helper"
86-
// CredshelperArgsFlag is the flag used to pass in the arguments to the credentials helper binary.
87-
CredshelperArgsFlag = "experimental_credentials_helper_args"
8884
// UseAppDefaultCredsFlag is used to authenticate with application default credentials.
8985
UseAppDefaultCredsFlag = "use_application_default_credentials"
9086
// UseExternalTokenFlag indicates the user will authenticate with a provided token.

0 commit comments

Comments
 (0)