Skip to content

Commit

Permalink
RHINENG-11579 rename cpu/memory parameters and adjust values (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
r14chandra authored Sep 2, 2024
1 parent 1157977 commit a90bfd1
Showing 1 changed file with 20 additions and 16 deletions.
36 changes: 20 additions & 16 deletions deploy/clowdapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ objects:
value: ${TENANT_TRANSLATOR_PROTOCOL}://${TENANT_TRANSLATOR_HOST}:${TENANT_TRANSLATOR_PORT}
resources:
limits:
cpu: ${CPU_LIMIT}
memory: ${MEMORY_LIMIT}
cpu: ${CPU_LIMIT_RHC_MANAGER}
memory: ${MEMORY_LIMIT_RHC_MANAGER}
requests:
cpu: 250m
memory: 256Mi
cpu: ${CPU_REQUEST_RHC_MANAGER}
memory: ${MEMORY_REQUEST_RHC_MANAGER}

- name: dispatcher-consumer
minReplicas: ${{REPLICAS}}
Expand Down Expand Up @@ -192,11 +192,11 @@ objects:
value: ${TENANT_TRANSLATOR_PROTOCOL}://${TENANT_TRANSLATOR_HOST}:${TENANT_TRANSLATOR_PORT}
resources:
limits:
cpu: ${CPU_LIMIT}
memory: ${MEMORY_LIMIT}
cpu: ${CPU_LIMIT_RHC_MANAGER}
memory: ${MEMORY_LIMIT_RHC_MANAGER}
requests:
cpu: 250m
memory: 256Mi
cpu: ${CPU_REQUEST_RHC_MANAGER}
memory: ${MEMORY_REQUEST_RHC_MANAGER}

- name: inventory-consumer
minReplicas: ${{REPLICAS}}
Expand Down Expand Up @@ -257,11 +257,11 @@ objects:
value: ${TENANT_TRANSLATOR_PROTOCOL}://${TENANT_TRANSLATOR_HOST}:${TENANT_TRANSLATOR_PORT}
resources:
limits:
cpu: ${CPU_LIMIT}
memory: ${MEMORY_LIMIT}
cpu: ${CPU_LIMIT_RHC_MANAGER}
memory: ${MEMORY_LIMIT_RHC_MANAGER}
requests:
cpu: 250m
memory: 256Mi
cpu: ${CPU_REQUEST_RHC_MANAGER}
memory: ${MEMORY_REQUEST_RHC_MANAGER}

jobs:
- name: org-id-populator
Expand Down Expand Up @@ -320,10 +320,14 @@ parameters:
value: trace
- name: CM_LOG_FORMAT
value: json
- name: CPU_LIMIT
value: 500m
- name: MEMORY_LIMIT
value: 512Mi
- name: CPU_LIMIT_RHC_MANAGER
value: 250m
- name: CPU_REQUEST_RHC_MANAGER
value: 150m
- name: MEMORY_LIMIT_RHC_MANAGER
value: 256Mi
- name: MEMORY_REQUEST_RHC_MANAGER
value: 128Mi

- name: REPLICAS
value: "3"
Expand Down

0 comments on commit a90bfd1

Please sign in to comment.