mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-11 17:31:58 +01:00
69b84c09af
Signed-off-by: magic_rb <magic_rb@redalder.org>
25 lines
538 B
Nix
25 lines
538 B
Nix
{
|
|
apiVersion = "policy/v1";
|
|
kind = "PodDisruptionBudget";
|
|
metadata = {
|
|
labels = {
|
|
app = "istiod";
|
|
"install.operator.istio.io/owning-resource" = "unknown";
|
|
istio = "pilot";
|
|
"istio.io/rev" = "1-20-2";
|
|
"operator.istio.io/component" = "Pilot";
|
|
release = "istio-istiod";
|
|
};
|
|
name = "istiod-1-20-2";
|
|
namespace = "istio-system";
|
|
};
|
|
spec = {
|
|
minAvailable = 1;
|
|
selector = {
|
|
matchLabels = {
|
|
app = "istiod";
|
|
"istio.io/rev" = "1-20-2";
|
|
};
|
|
};
|
|
};
|
|
}
|