mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-09 12:05:50 +03:00
nixos/kubernetes: Add longer timeouts for waiting services
This commit is contained in:
parent
51aeaaffc2
commit
cf8389c904
2 changed files with 4 additions and 1 deletions
|
@ -480,6 +480,9 @@ in
|
||||||
})}
|
})}
|
||||||
'';
|
'';
|
||||||
script = "echo apiserver control plane is online";
|
script = "echo apiserver control plane is online";
|
||||||
|
serviceConfig = {
|
||||||
|
TimeoutSec = "500";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -246,7 +246,7 @@ in
|
||||||
'')
|
'')
|
||||||
];
|
];
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
TimeoutSec = "300";
|
TimeoutSec = "500";
|
||||||
RestartSec = "1s";
|
RestartSec = "1s";
|
||||||
Restart = "on-failure";
|
Restart = "on-failure";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue