1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 13:25:26 +02:00

feat(service): support the Order field for Update Configuration (#1101)

This commit is contained in:
Anthony Lapenna 2017-08-09 15:30:50 +02:00 committed by GitHub
parent d7769dec33
commit 04ea81e7cd
5 changed files with 65 additions and 15 deletions

View file

@ -79,10 +79,12 @@ function ServiceViewModel(data, runningTasks, nodes) {
this.UpdateParallelism = (typeof data.Spec.UpdateConfig.Parallelism !== undefined) ? data.Spec.UpdateConfig.Parallelism || 0 : 1;
this.UpdateDelay = data.Spec.UpdateConfig.Delay || 0;
this.UpdateFailureAction = data.Spec.UpdateConfig.FailureAction || 'pause';
this.UpdateOrder = data.Spec.UpdateConfig.Order || 'stop-first';
} else {
this.UpdateParallelism = 1;
this.UpdateDelay = 0;
this.UpdateFailureAction = 'pause';
this.UpdateOrder = 'stop-first';
}
this.RollbackConfig = data.Spec.RollbackConfig;