-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run ARO HCP frontend with 2 replicas
With the completion of #680 this PR adds a PodDisruptionBudget to ensure 1 replica is running, but by default 2 replicas will be running at all times. Signed-off-by: Michael Shen <mshen@redhat.com>
- Loading branch information
Showing
2 changed files
with
12 additions
and
3 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
9 changes: 9 additions & 0 deletions
9
frontend/deploy/helm/frontend/templates/frontend.poddisruptionbudget.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,9 @@ | ||
apiVersion: policy/v1 | ||
kind: PodDisruptionBudget | ||
metadata: | ||
name: aro-hcp-frontend | ||
spec: | ||
minAvailable: 1 | ||
selector: | ||
matchLabels: | ||
app: aro-hcp-frontend |