-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
internal: merge xds/envconfig into env package #4923
Conversation
LGTM, but see my comment on #4922. |
PR updated with the changes made in #4922 to leave RBAC in place. |
internal/xds/bootstrap.go
Outdated
@@ -79,11 +79,11 @@ func SetupBootstrapFile(opts BootstrapOptions) (func(), error) { | |||
} | |||
logger.Infof("Created bootstrap file at %q with contents: %s\n", f.Name(), bootstrapContents) | |||
|
|||
origBootstrapFileName := env.BootstrapFileName | |||
env.BootstrapFileName = f.Name() | |||
origBootstrapFileName := envconfig.BootstrapFileName |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, most (all?) of the xds variable names don't have "xds" in it. Would that be confusing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense. I tweaked the variable names a bit; PTAL
Also contains #4922
RELEASE NOTES: N/A