Skip to content

Commit

Permalink
fix: PDB maxUnavailable value needs to be a string (#459)
Browse files Browse the repository at this point in the history
* fix: PDB maxUnavailable value needs to be a string

* single quotes
  • Loading branch information
yj-yan committed Mar 27, 2024
1 parent 18b53b0 commit 3b9500a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ local all = {
metadata+: {
labels: sharedLabels,
},
spec+: { maxUnavailable: 10% },
spec+: { maxUnavailable: '10%' },
},
// Default configuration for the service, managed by stencil.
// all other configuration should be done in the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ local all = {
metadata+: {
labels: sharedLabels,
},
spec+: { maxUnavailable: 10% },
spec+: { maxUnavailable: '10%' },
},
// Default configuration for the service, managed by stencil.
// all other configuration should be done in the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ local all = {
metadata+: {
labels: sharedLabels,
},
spec+: { maxUnavailable: 10% },
spec+: { maxUnavailable: '10%' },
},
// Default configuration for the service, managed by stencil.
// all other configuration should be done in the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ local all = {
metadata+: {
labels: sharedLabels,
},
spec+: { maxUnavailable: 10% },
spec+: { maxUnavailable: '10%' },
},
// Default configuration for the service, managed by stencil.
// all other configuration should be done in the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ local all = {
metadata+: {
labels: sharedLabels,
},
spec+: { maxUnavailable: 10% },
spec+: { maxUnavailable: '10%' },
},
// Default configuration for the service, managed by stencil.
// all other configuration should be done in the
Expand Down
2 changes: 1 addition & 1 deletion templates/deployments/appname/app.jsonnet.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ local all = {
metadata+: {
labels: sharedLabels,
},
spec+: { maxUnavailable: 10% },
spec+: { maxUnavailable: '10%' },
},
// Default configuration for the service, managed by stencil.
// all other configuration should be done in the
Expand Down

0 comments on commit 3b9500a

Please sign in to comment.