-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pod disruption budgets so the cluster-autoscaler is able to move …
…kube-admin namespaced resources (#2781) * helm: refactor cilium helm values * helm: add pod disruption budgets
- Loading branch information
Showing
7 changed files
with
139 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
.../helm/charts/edgeless/constellation-services/charts/autoscaler/templates/coredns-pdb.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
apiVersion: policy/v1 | ||
kind: PodDisruptionBudget | ||
metadata: | ||
name: coredns-pdb | ||
namespace: "kube-system" | ||
spec: | ||
maxUnavailable: 1 | ||
selector: | ||
matchLabels: | ||
k8s-app: kube-dns |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
...ion/helm/testdata/AWS/constellation-services/charts/autoscaler/templates/coredns-pdb.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
apiVersion: policy/v1 | ||
kind: PodDisruptionBudget | ||
metadata: | ||
name: coredns-pdb | ||
namespace: kube-system | ||
spec: | ||
maxUnavailable: 1 | ||
selector: | ||
matchLabels: | ||
k8s-app: kube-dns |
10 changes: 10 additions & 0 deletions
10
...n/helm/testdata/Azure/constellation-services/charts/autoscaler/templates/coredns-pdb.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
apiVersion: policy/v1 | ||
kind: PodDisruptionBudget | ||
metadata: | ||
name: coredns-pdb | ||
namespace: kube-system | ||
spec: | ||
maxUnavailable: 1 | ||
selector: | ||
matchLabels: | ||
k8s-app: kube-dns |
10 changes: 10 additions & 0 deletions
10
...ion/helm/testdata/GCP/constellation-services/charts/autoscaler/templates/coredns-pdb.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
apiVersion: policy/v1 | ||
kind: PodDisruptionBudget | ||
metadata: | ||
name: coredns-pdb | ||
namespace: kube-system | ||
spec: | ||
maxUnavailable: 1 | ||
selector: | ||
matchLabels: | ||
k8s-app: kube-dns |
Oops, something went wrong.