Skip to content

Commit

Permalink
fix: Speed up daemonset upgrades
Browse files Browse the repository at this point in the history
We had max_unavailable set to 1 which means it can take up to n x 30+
seconds to perform rolling upgrades. That's a long time for big
environments with hundreds of nodes.
  • Loading branch information
LukeRepko committed May 10, 2024
1 parent 4019122 commit 5a39db2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helm-configs/nova/nova-helm-overrides.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2330,7 +2330,7 @@ pod:
compute:
enabled: true
min_ready_seconds: 0
max_unavailable: 1
max_unavailable: 20%
disruption_budget:
metadata:
min_available: 0
Expand Down
2 changes: 1 addition & 1 deletion kustomize/libvirt/helm/libvirt-helm-overrides.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ pod:
libvirt:
enabled: true
min_ready_seconds: 0
max_unavailable: 1
max_unavailable: 20%
resources:
enabled: false
libvirt:
Expand Down

0 comments on commit 5a39db2

Please sign in to comment.