Add more maxSurge=0 to deployments

This commit is contained in:
Pim Kunis 2024-12-01 18:47:25 +01:00
parent 87a0f8ff8a
commit 3e28f0f3e3
2 changed files with 27 additions and 0 deletions

View file

@ -25,6 +25,15 @@
component = "website";
};
strategy = {
type = "RollingUpdate";
rollingUpdate = {
maxSurge = 0;
maxUnavailable = 1;
};
};
template = {
metadata.labels = {
app = "hedgedoc";
@ -88,6 +97,15 @@
component = "database";
};
strategy = {
type = "RollingUpdate";
rollingUpdate = {
maxSurge = 0;
maxUnavailable = 1;
};
};
template = {
metadata.labels = {
app = "hedgedoc";

View file

@ -85,6 +85,15 @@
component = "database";
};
strategy = {
type = "RollingUpdate";
rollingUpdate = {
maxSurge = 0;
maxUnavailable = 1;
};
};
template = {
metadata.labels = {
app = "nextcloud";