apache / openwhisk-deploy-kube

The Apache OpenWhisk Kubernetes Deployment repository supports deploying the Apache OpenWhisk system on Kubernetes and OpenShift clusters.
https://openwhisk.apache.org/
Apache License 2.0
297 stars 231 forks source link

Allow specifying update strategy "Recreate" for deployments with PVs #638

Closed twavv closed 3 years ago

twavv commented 3 years ago

Some cloud providers (GCE in my case) don't support RWM disks, which means that rolling updates fail (since the new pod can't attach the PD).

The couchdb and redis pods (since they're Deployments) should support

spec:
  ...
  strategy:
    type: "Recreate"
  ...