Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to view the progress of a cf push command to CloudFoundary

I am trying to push a large WAR file to CloudFoundary using cf push command. Is there a way to view the progress of how much has been pushed to the remote server in this command using any parameters?

like image 676
London guy Avatar asked Sep 11 '25 07:09

London guy


1 Answers

As of v6.3 (https://github.com/cloudfoundry/cli/releases) I don't believe there is a nice progress bar for upload.

One option, if you're debugging and trying to ensure that upload is actually happening, is to turn on tracing.

export CF_TRACE=true
cf push
like image 126
Dr Nic Avatar answered Sep 14 '25 16:09

Dr Nic