Skip to content

Commit

Permalink
BC-6937 scale scan-file-deployment to max 2 (#54)
Browse files Browse the repository at this point in the history
currently keda creates an hpa which is basically maxed out for longer
time thus might trigger a warning

to cicumvent that and ease it up a little we simply scale it up to max 2
  • Loading branch information
Loki-Afro authored Mar 25, 2024
1 parent f5c4b17 commit 895dcc4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
cooldownPeriod: 1800 #keep action for 15min
idleReplicaCount: 0
minReplicaCount: {{ ANTIVIRUS_SCANFILE_MIN_REPLICA_COUNT|default("0", true) }}
maxReplicaCount: {{ ANTIVIRUS_SCANFILE_MAX_REPLICA_COUNT|default("1", true) }}
maxReplicaCount: {{ ANTIVIRUS_SCANFILE_MAX_REPLICA_COUNT|default("2", true) }}
triggers:
- type: rabbitmq
metadata:
Expand Down

0 comments on commit 895dcc4

Please sign in to comment.