Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

parameterize importer resource requirements #2149

Merged
merged 1 commit into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES/3190.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Parameterize ansible-test importer resource requirements
22 changes: 17 additions & 5 deletions openshift/clowder/clowd-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -317,15 +317,15 @@ objects:
- name: IMPORTER_IMAGE_TAG
value: ${IMPORTER_IMAGE_TAG}
- name: IMPORTER_MEMORY_REQUEST
value: 1Gi
value: ${IMPORTER_MEMORY_REQUEST}
- name: IMPORTER_MEMORY_LIMIT
value: 2Gi
value: ${IMPORTER_MEMORY_LIMIT}
- name: IMPORTER_CPU_REQUEST
value: 500m
value: ${IMPORTER_CPU_REQUEST}
- name: IMPORTER_CPU_LIMIT
value: 1000m
value: ${IMPORTER_CPU_LIMIT}
- name: IMPORTER_JOB_TIMEOUT
value: "1800"
value: ${IMPORTER_JOB_TIMEOUT}
- name: PULP_REDIS_SSL
value: ${REDIS_SSL}
- name: ENABLE_SIGNING
Expand Down Expand Up @@ -471,3 +471,15 @@ parameters:
value: 200m
- name: PULP_WORKER_CPU_LIMIT
value: 500m

# importer resource requirements
- name: IMPORTER_MEMORY_REQUEST
value: 1Gi
- name: IMPORTER_MEMORY_LIMIT
value: 2Gi
- name: IMPORTER_CPU_REQUEST
value: 500m
- name: IMPORTER_CPU_LIMIT
value: 1000m
- name: IMPORTER_JOB_TIMEOUT
value: "1800"
Loading