Skip to content

Commit

Permalink
Change CPU/MEMORY limits for clowdapp - ADR46 (#743)
Browse files Browse the repository at this point in the history
  • Loading branch information
patchkez authored Jan 10, 2025
1 parent 3fef1e6 commit a0f203f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .rhcicd/clowdapp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ objects:
image: ${IMAGE}:${IMAGE_TAG}
resources:
requests:
cpu: ${CPU_REQUEST}
memory: ${MEMORY_REQUEST}
cpu: ${CPU_REQUEST_BACKEND}
memory: ${MEMORY_REQUEST_BACKEND}
limits:
cpu: ${CPU_LIMIT}
memory: ${MEMORY_LIMIT}
cpu: ${CPU_LIMIT_BACKEND}
memory: ${MEMORY_LIMIT_BACKEND}
volumes:
- name: rds-client-ca
emptyDir: {}
Expand Down Expand Up @@ -177,10 +177,10 @@ parameters:
- name: CLOUDWATCH_ENABLED
description: Enable Cloudwatch (or not)
value: "false"
- name: CPU_LIMIT
- name: CPU_LIMIT_BACKEND
description: CPU limit
value: 200m
- name: CPU_REQUEST
- name: CPU_REQUEST_BACKEND
description: CPU request
value: 100m
- name: DB_CLEANER_SCHEDULE
Expand Down Expand Up @@ -226,10 +226,10 @@ parameters:
- name: IMAGE_TAG
description: Image tag
value: latest
- name: MEMORY_LIMIT
- name: MEMORY_LIMIT_BACKEND
description: Memory limit
value: 500Mi
- name: MEMORY_REQUEST
- name: MEMORY_REQUEST_BACKEND
description: Memory request
value: 250Mi
- name: MIN_REPLICAS
Expand Down

0 comments on commit a0f203f

Please sign in to comment.