-
Notifications
You must be signed in to change notification settings - Fork 63
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
Is there any way to disable progress bar shown during pushing of images ? #666
Comments
@tarun818 I don't think there's a way to disable the progress bar while using the |
Hey |
@joaopapereira Thanks for your response. |
I created a PR that will add the v1 API for copy #668. There is another PR that is being reviewed that does change the code in copy and we need to decide if we want to merge this first and add rebase that PR or the reverse. |
The PR is merged. @tarun818 Could you give the copy apis a try now (we haven't made a release yet but you should be able to use the latest commit sha). |
I am using below snippet in my code base to push images
`// Create a CopyOptions object for imgpkg's copyOptions.Run()
copyOptions := imgpkg.NewCopyOptions(goUi.NewConfUI(goUi.NewNoopLogger()))
//...
//...
// Set fields according to parameters and default imgpkg configurations, as well as registry auth
copyOptions.RepoDst =
copyOptions.Concurrency = 1
//... and so on and finally, I call Run as shown below
copyOptions.Run()
`
This copyOptions.Run() will start a progress bar as shown here
I want to disable it. is this possible ?
The text was updated successfully, but these errors were encountered: