Skip to content

Commit

Permalink
neonvm-runner-image-loader: Faster rollout (#923)
Browse files Browse the repository at this point in the history
Specifically, this PR sets `maxUnavailable = 100%`, which allows
updating all replicas in parallel.

An issue we see during rollout is that it often takes 30+ seconds to
create a new neonvm-runner-image-loader on a node, and doing this for
many nodes takes an unreasonable amount of time. This improves that.
  • Loading branch information
sharnoff authored May 6, 2024
1 parent 5b2b27e commit 8601caf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions neonvm/runner-image-loader/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ spec:
selector:
matchLabels:
name: neonvm-runner-image-loader
updateStrategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 100%
template:
metadata:
labels:
Expand Down

0 comments on commit 8601caf

Please sign in to comment.