-
Notifications
You must be signed in to change notification settings - Fork 2.9k
feat: Support batch import for Docker images #11640
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
base: dev-v2
Are you sure you want to change the base?
Conversation
|
Adding the "do-not-merge/release-note-label-needed" label because no release-note block was detected, please follow our release note process to remove it. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
agent/app/service/image.go
Outdated
| if err != nil { | ||
| return err | ||
| } | ||
| defer client.Close() |
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.
client, err := docker.NewDockerClient()
if err != nil {
return err
}
defer client.Close()
It is advisable to move this part of the code outside the loop to avoid duplication.
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.
Done. Moved Docker client creation outside the loop.
| </div> | ||
| <div class="file-list-bottom"> | ||
| <div v-if="selectRow?.path"> | ||
| <!-- Single select mode --> |
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.
recommend removing the code comments.
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.
Done. Removed.
What this PR does / why we need it?
Refs #11634
Summary of your change
Backend (Agent):
Frontend:
Please indicate you've done the following: