Skip to content
This repository has been archived by the owner on Jun 26, 2024. It is now read-only.

Commit

Permalink
Use fewer pod replicas in testing deployments
Browse files Browse the repository at this point in the history
We don't need the resiliancy of 3 replicas for generic-test-app deployments
during acceptance tests.  Explicitly set `replicas: 1` in our deployments to
reduce pod utilization.

Signed-off-by: Andy Sadler <[email protected]>
  • Loading branch information
sadlerap committed Aug 24, 2022
1 parent 8622634 commit 5feabcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/acceptance/features/steps/openshift.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def __init__(self):
labels:
app: myapp
spec:
replicas: 3
replicas: 1
selector:
matchLabels:
app: myapp
Expand Down

0 comments on commit 5feabcf

Please sign in to comment.