2022-01-17 05:53:32 +00:00
< form class = "form-horizontal" style = "margin-top: 15px" >
< div class = "col-sm-12 form-section-title" > Update config < / div >
2017-12-07 20:05:45 +00:00
<!-- parallelism - input -->
< div class = "form-group" >
< label for = "parallelism" class = "col-sm-3 col-lg-2 control-label text-left" > Update parallelism< / label >
< div class = "col-sm-4 col-lg-3" >
2020-04-10 21:54:53 +00:00
< input type = "number" class = "form-control" ng-model = "formValues.Parallelism" id = "parallelism" placeholder = "e.g. 1" / >
2017-12-07 20:05:45 +00:00
< / div >
< div class = "col-sm-5" >
2022-01-17 05:53:32 +00:00
< p class = "small text-muted" > Maximum number of tasks to be updated simultaneously (0 to update all at once). < / p >
2017-12-07 20:05:45 +00:00
< / div >
< / div >
<!-- !parallelism - input -->
<!-- delay - input -->
< div class = "form-group" >
< label for = "update-delay" class = "col-sm-3 col-lg-2 control-label text-left" >
Update delay
< portainer-tooltip position = "bottom" message = "Supported format examples: 1h, 5m, 10s, 1000ms, 15us, 60ns." > < / portainer-tooltip >
2020-04-10 21:54:53 +00:00
< / label >
2017-12-07 20:05:45 +00:00
< div class = "col-sm-4 col-lg-3" >
2020-04-10 21:54:53 +00:00
< input type = "text" class = "form-control" ng-model = "formValues.UpdateDelay" id = "update-delay" placeholder = "e.g. 1m" ng-pattern = "/^([0-9]+)(h|m|s|ms|us|ns)$/i" / >
2017-12-07 20:05:45 +00:00
< / div >
< div class = "col-sm-5" >
2022-01-17 05:53:32 +00:00
< p class = "small text-muted" > Amount of time between updates expressed by a number followed by unit (ns|us|ms|s|m|h). Default value is 0s, 0 seconds. < / p >
2017-12-07 20:05:45 +00:00
< / div >
< / div >
<!-- !delay - input -->
<!-- failureAction - input -->
< div class = "form-group" >
< label for = "failure-action" class = "col-sm-3 col-lg-2 control-label text-left" > Update failure action< / label >
< div class = "col-sm-4 col-lg-3" >
< div class = "btn-group btn-group-sm" >
< label class = "btn btn-primary" ng-model = "formValues.FailureAction" uib-btn-radio = "'continue'" > Continue< / label >
< label class = "btn btn-primary" ng-model = "formValues.FailureAction" uib-btn-radio = "'pause'" > Pause< / label >
< / div >
< / div >
< div class = "col-sm-5" >
2022-01-17 05:53:32 +00:00
< p class = "small text-muted" > Action taken on failure to start after update. < / p >
2017-12-07 20:05:45 +00:00
< / div >
< / div >
<!-- !failureAction - input -->
<!-- order - input -->
< div class = "form-group" ng-if = "applicationState.endpoint.apiVersion >= 1.29" >
< label for = "update-order" class = "col-sm-3 col-lg-2 control-label text-left" > Update order< / label >
< div class = "col-sm-4 col-lg-3" >
< div class = "btn-group btn-group-sm" >
< label class = "btn btn-primary" ng-model = "formValues.UpdateOrder" uib-btn-radio = "'start-first'" > start-first< / label >
< label class = "btn btn-primary" ng-model = "formValues.UpdateOrder" uib-btn-radio = "'stop-first'" > stop-first< / label >
< / div >
< / div >
< div class = "col-sm-5" >
2022-01-17 05:53:32 +00:00
< p class = "small text-muted" > Operation order on failure. < / p >
2017-12-07 20:05:45 +00:00
< / div >
< / div >
<!-- !order - input -->
2020-04-10 21:54:53 +00:00
2022-01-17 05:53:32 +00:00
< div class = "col-sm-12 form-section-title" > Restart policy < / div >
2017-12-07 20:05:45 +00:00
<!-- restartCondition - input -->
< div class = "form-group" >
< label for = "restart-condition" class = "col-sm-3 col-lg-2 control-label text-left" > Restart condition< / label >
< div class = "col-sm-4 col-lg-3" >
< div class = "btn-group btn-group-sm" >
< label class = "btn btn-primary" ng-model = "formValues.RestartCondition" uib-btn-radio = "'none'" > None< / label >
< label class = "btn btn-primary" ng-model = "formValues.RestartCondition" uib-btn-radio = "'on-failure'" > On-failure< / label >
< label class = "btn btn-primary" ng-model = "formValues.RestartCondition" uib-btn-radio = "'any'" > Any< / label >
< / div >
< / div >
< div class = "col-sm-5" >
2022-01-17 05:53:32 +00:00
< p class = "small text-muted" > Restart when condition is met (default condition "any"). < / p >
2017-12-07 20:05:45 +00:00
< / div >
< / div >
<!-- !restartCondition - input -->
<!-- restartDelay - input -->
< div class = "form-group" >
< label for = "restart-delay" class = "col-sm-3 col-lg-2 control-label text-left" >
Restart delay
< portainer-tooltip position = "bottom" message = "Supported format examples: 1h, 5m, 10s, 1000ms, 15us, 60ns." > < / portainer-tooltip >
2020-04-10 21:54:53 +00:00
< / label >
2017-12-07 20:05:45 +00:00
< div class = "col-sm-4 col-lg-3" >
2020-04-10 21:54:53 +00:00
< input type = "text" class = "form-control" ng-model = "formValues.RestartDelay" id = "restart-delay" placeholder = "e.g. 1m" ng-pattern = "/^([0-9]+)(h|m|s|ms|us|ns)$/i" / >
2017-12-07 20:05:45 +00:00
< / div >
< div class = "col-sm-5" >
2022-01-17 05:53:32 +00:00
< p class = "small text-muted" > Delay between restart attempts expressed by a number followed by unit (ns|us|ms|s|m|h). Default value is 5s, 5 seconds. < / p >
2017-12-07 20:05:45 +00:00
< / div >
< / div >
<!-- !restartDelay - input -->
<!-- restartMaxAttempts - input -->
2020-04-10 21:54:53 +00:00
< div class = "form-group" >
2017-12-07 20:05:45 +00:00
< label for = "restart-max-attempts" class = "col-sm-3 col-lg-2 control-label text-left" > Restart max attempts< / label >
< div class = "col-sm-4 col-lg-3" >
2020-04-10 21:54:53 +00:00
< input type = "number" class = "form-control" ng-model = "formValues.RestartMaxAttempts" id = "restart-max-attempts" placeholder = "e.g. 0" / >
2017-12-07 20:05:45 +00:00
< / div >
< div class = "col-sm-5" >
2022-01-17 05:53:32 +00:00
< p class = "small text-muted" > Maximum attempts to restart a given task before giving up (default value is 0, which means unlimited). < / p >
2017-12-07 20:05:45 +00:00
< / div >
< / div >
<!-- !restartMaxAttempts - input -->
<!-- restartWindow - input -->
< div class = "form-group" >
< label for = "restart-window" class = "col-sm-3 col-lg-2 control-label text-left" >
Restart window
< portainer-tooltip position = "bottom" message = "Supported format examples: 1h, 5m, 10s, 1000ms, 15us, 60ns." > < / portainer-tooltip >
2020-04-10 21:54:53 +00:00
< / label >
2017-12-07 20:05:45 +00:00
< div class = "col-sm-4 col-lg-3" >
2020-04-10 21:54:53 +00:00
< input type = "text" class = "form-control" ng-model = "formValues.RestartWindow" id = "restart-window" placeholder = "e.g. 1m" ng-pattern = "/^([0-9]+)(h|m|s|ms|us|ns)$/i" / >
2017-12-07 20:05:45 +00:00
< / div >
< div class = "col-sm-5" >
< p class = "small text-muted" >
Time window to evaluate restart attempts expressed by a number followed by unit (ns|us|ms|s|m|h). Default value is 0 seconds, which is unbounded.
< / p >
< / div >
< / div >
<!-- !restartWindow - input -->
2020-04-10 21:54:53 +00:00
< / form >