ethyca / fides-helm

Helm charts to deploy Fides tools
https://helm.ethyca.com
Apache License 2.0
2 stars 3 forks source link

feat: make deployment strategy configurable #14

Closed RobertKeyser closed 1 year ago

RobertKeyser commented 1 year ago

Description of Changes

Adds a new values.yaml entry useRollingUpdate to determine whether to gracefully roll the pods or whether to terminate and then recreate the pods.

useRollingUpdate == true -> configure the deployment strategies to run rolling updates (graceful, for prod) useRollingUpdate == false -> configure the deployment strategies to replace the existing pods (not graceful for dev)

This was tested with positive results.

Pre-merge Checklist