Skip to content

Commit

Permalink
Merge pull request #153 from ScheererJ/fix-v1.19/allow-single-node-cl…
Browse files Browse the repository at this point in the history
…uster-to-update-typha

Allow typha deployment updates even on single node clusters.
  • Loading branch information
ScheererJ authored Feb 23, 2022
2 parents 8ce93ff + 3bed574 commit 1997ab7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ spec:
# Ensure that typha always stays available
type: RollingUpdate
rollingUpdate:
maxUnavailable: 0
# We would want maxUnavailable=0, but for one node cluster this would block updates
# as the port would already be occupied due to usage of host network
maxUnavailable: 1
maxSurge: 25%
selector:
matchLabels:
Expand Down

0 comments on commit 1997ab7

Please sign in to comment.