Skip to content

Commit

Permalink
fix: max replicas too low
Browse files Browse the repository at this point in the history
Reduces email alert noise
  • Loading branch information
trev-dev committed Mar 20, 2024
1 parent fc7bd63 commit eaf380a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to.openshift-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ env:
COMMON_NAMESPACE: ${{ secrets.COMMON_NAMESPACE_NO_ENV }}
TAG: "latest"
MIN_REPLICAS_DEV: "1"
MAX_REPLICAS_DEV: "1"
MAX_REPLICAS_DEV: "2"
MIN_CPU: "10m"
MAX_CPU: "150m"
MIN_MEM: "400Mi"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to.openshift-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ env:
TAG: "latest"
TARGET_ENV: "prod"
MIN_REPLICAS: "3"
MAX_REPLICAS: "3"
MAX_REPLICAS: "4"
MIN_CPU: "10m"
MAX_CPU: "300m"
MIN_MEM: "650Mi"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to.openshift-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ env:
COMMON_NAMESPACE: ${{ secrets.COMMON_NAMESPACE_NO_ENV }}
TAG: ${{ github.event.inputs.tag }}
MIN_REPLICAS_TEST: "2"
MAX_REPLICAS_TEST: "2"
MAX_REPLICAS_TEST: "3"
MIN_CPU: "10m"
MAX_CPU: "150m"
MIN_MEM: "650Mi"
Expand Down

0 comments on commit eaf380a

Please sign in to comment.