mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 10:25:42 +03:00
Adding '-verbose' will print out the allocation information for the deployment. This also changes the job run command so that it now blocks until deployment is complete and adds timestamps to the output so that it's more in line with the output of node drain. This uses glint to print in place in running in a tty. Because glint doesn't yet support cmd/powershell, Windows workflows use a different library to print in place, which results in slightly different formatting: 1) different margins, and 2) no spinner indicating deployment in progress.
16 lines
790 B
Go
16 lines
790 B
Go
package pb
|
|
|
|
var (
|
|
// Full - preset with all default available elements
|
|
// Example: 'Prefix 20/100 [-->______] 20% 1 p/s ETA 1m Suffix'
|
|
Full ProgressBarTemplate = `{{string . "prefix"}}{{counters . }} {{bar . }} {{percent . }} {{speed . }} {{rtime . "ETA %s"}}{{string . "suffix"}}`
|
|
|
|
// Default - preset like Full but without elapsed time
|
|
// Example: 'Prefix 20/100 [-->______] 20% 1 p/s ETA 1m Suffix'
|
|
Default ProgressBarTemplate = `{{string . "prefix"}}{{counters . }} {{bar . }} {{percent . }} {{speed . }}{{string . "suffix"}}`
|
|
|
|
// Simple - preset without speed and any timers. Only counters, bar and percents
|
|
// Example: 'Prefix 20/100 [-->______] 20% Suffix'
|
|
Simple ProgressBarTemplate = `{{string . "prefix"}}{{counters . }} {{bar . }} {{percent . }}{{string . "suffix"}}`
|
|
)
|