diff --git a/frontend/deploy/helm/frontend/templates/frontend.deployment.yaml b/frontend/deploy/helm/frontend/templates/frontend.deployment.yaml index 8bc2182f3..e9c63c458 100644 --- a/frontend/deploy/helm/frontend/templates/frontend.deployment.yaml +++ b/frontend/deploy/helm/frontend/templates/frontend.deployment.yaml @@ -6,15 +6,15 @@ metadata: name: aro-hcp-frontend spec: progressDeadlineSeconds: 600 - replicas: 1 + replicas: 2 revisionHistoryLimit: 10 selector: matchLabels: app: aro-hcp-frontend strategy: rollingUpdate: - maxSurge: 25% - maxUnavailable: 25% + maxSurge: 50% + maxUnavailable: 50% type: RollingUpdate template: metadata: diff --git a/frontend/deploy/helm/frontend/templates/frontend.poddisruptionbudget.yaml b/frontend/deploy/helm/frontend/templates/frontend.poddisruptionbudget.yaml new file mode 100644 index 000000000..4d9f6145a --- /dev/null +++ b/frontend/deploy/helm/frontend/templates/frontend.poddisruptionbudget.yaml @@ -0,0 +1,9 @@ +apiVersion: policy/v1 +kind: PodDisruptionBudget +metadata: + name: aro-hcp-frontend +spec: + minAvailable: 1 + selector: + matchLabels: + app: aro-hcp-frontend