-
Notifications
You must be signed in to change notification settings - Fork 173
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
Update zarf-managed secrets in all namespaces on a reinit #1898
Conversation
✅ Deploy Preview for zarf-docs canceled.
|
TODO:
|
fmt.Println(state.LoggingSecret) | ||
case GitKey: | ||
Notef("Git Server push password (username: %s):", state.GitServer.PushUsername) | ||
fmt.Println(state.GitServer.PushPassword) |
Check failure
Code scanning / CodeQL
Clear-text logging of sensitive information
fmt.Println(state.GitServer.PushPassword) | ||
case GitReadKey: | ||
Notef("Git Server (read-only) password (username: %s):", state.GitServer.PullUsername) | ||
fmt.Println(state.GitServer.PullPassword) |
Check failure
Code scanning / CodeQL
Clear-text logging of sensitive information
fmt.Println(state.ArtifactServer.PushToken) | ||
case RegistryKey: | ||
Notef("Image Registry password (username: %s):", state.RegistryInfo.PushUsername) | ||
fmt.Println(state.RegistryInfo.PushPassword) |
Check failure
Code scanning / CodeQL
Clear-text logging of sensitive information
fmt.Println(state.RegistryInfo.PushPassword) | ||
case RegistryReadKey: | ||
Notef("Image Registry (read-only) password (username: %s):", state.RegistryInfo.PullUsername) | ||
fmt.Println(state.RegistryInfo.PullPassword) |
Check failure
Code scanning / CodeQL
Clear-text logging of sensitive information
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.
lgtm
Co-authored-by: razzle <harry@razzle.cloud>
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.
lgtm
Description
This updates the secret handling logic to update image pull secrets and git pull secrets in the event of a reinit.
Related Issue
Relates to #1715
Type of change
Checklist before merging