default backed update strategy to recreate
Signed-off-by: Pascal Sthamer <10992664+P4sca1@users.noreply.github.com>
This commit is contained in:
@@ -217,7 +217,7 @@ The password should be provided with the `SHUFFLE_OPENSEARCH_PASSWORD` env varia
|
||||
| `backend.affinity` | Affinity for backend pods assignment | `{}` |
|
||||
| `backend.nodeSelector` | Node labels for backend pods assignment | `{}` |
|
||||
| `backend.tolerations` | Tolerations for backend pods assignment | `[]` |
|
||||
| `backend.updateStrategy.type` | backend deployment strategy type | `RollingUpdate` |
|
||||
| `backend.updateStrategy.type` | backend deployment strategy type | `Recreate` |
|
||||
| `backend.priorityClassName` | backend pods' priorityClassName | `""` |
|
||||
| `backend.topologySpreadConstraints` | Topology Spread Constraints for backend pod assignment spread across your cluster among failure-domains | `[]` |
|
||||
| `backend.schedulerName` | Name of the k8s scheduler (other than default) for backend pods | `""` |
|
||||
|
||||
@@ -517,7 +517,7 @@
|
||||
"type": {
|
||||
"type": "string",
|
||||
"description": "backend deployment strategy type",
|
||||
"default": "RollingUpdate"
|
||||
"default": "Recreate"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -310,14 +310,14 @@ backend:
|
||||
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
|
||||
##
|
||||
tolerations: []
|
||||
## ONLY FOR DEPLOYMENTS:
|
||||
## @param backend.updateStrategy.type backend deployment strategy type
|
||||
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy
|
||||
##
|
||||
updateStrategy:
|
||||
## Can be set to RollingUpdate or Recreate
|
||||
## Backend uses ReadWriteOnce volumes by default, which is incompatible with RollingUpdate
|
||||
##
|
||||
type: RollingUpdate
|
||||
type: Recreate
|
||||
## @param backend.priorityClassName backend pods' priorityClassName
|
||||
##
|
||||
priorityClassName: ""
|
||||
|
||||
Reference in New Issue
Block a user