backup: change deployment update strategy to Recreate

This commit is contained in:
Hongchao Deng 2017-05-05 22:01:32 -07:00
Родитель ba178d3d55
Коммит ed7c13e63b
2 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -6,10 +6,14 @@
### Changed
- Backup sidecar deployment created with `Recreate` strategy.
### Removed
### Fixed
- [GH-1068] Backup sidecar deployment stuck at upgrading
### Deprecated
### Security

Просмотреть файл

@ -213,6 +213,9 @@ func NewBackupDeploymentManifest(name string, dplSel map[string]string, pl v1.Po
Spec: appsv1beta1.DeploymentSpec{
Selector: &metav1.LabelSelector{MatchLabels: pl.ObjectMeta.Labels},
Template: pl,
Strategy: appsv1beta1.DeploymentStrategy{
Type: appsv1beta1.RecreateDeploymentStrategyType,
},
},
}
addOwnerRefToObject(d.GetObjectMeta(), owner)