Skip to content

Commit

Permalink
fix yaml files
Browse files Browse the repository at this point in the history
- update key for resource requests
- use ${} for env vars placeholders to be not confused with yaml directives
  • Loading branch information
petracihalova committed Jan 14, 2025
1 parent dcb04dc commit 79a3230
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion openshift/rbac-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ objects:
selector:
name: rbac-pgsql
resources:
limits:
requests:
memory: ${MEMORY_REQUEST}
limits:
memory: ${MEMORY_LIMIT}
Expand Down
2 changes: 1 addition & 1 deletion openshift/redis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ objects:
selector:
name: ${NAME}-redis
resources:
limits:
requests:
memory: ${MEMORY_REQUEST}
limits:
memory: ${MEMORY_LIMIT}
Expand Down
6 changes: 3 additions & 3 deletions scripts/ephemeral/config_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ apps:
components:
- name: rbac
host: local
repo: %REPO%
repo: $(REPO}
path: /deploy/rbac-clowdapp.yml
parameters:
IMAGE_TAG: %IMAGE_TAG%
IMAGE: %IMAGE%
IMAGE_TAG: ${IMAGE_TAG}
IMAGE: ${IMAGE}
CW_NULL_WORKAROUND: false
MIN_SCHEDULER_REPLICAS: 1
CELERY_WORKER_MEMORY_LIMIT: '2Gi'
Expand Down

0 comments on commit 79a3230

Please sign in to comment.