Skip to content

Commit

Permalink
memory max limit to request ratio per Pod is 2 (#129)
Browse files Browse the repository at this point in the history
Fix:
```
Error from server (Forbidden): error when creating "STDIN": pods "iqe-tests" is forbidden: memory max limit to request ratio per Pod is 2, but provided ratio is 4
```
  • Loading branch information
Avielyo10 authored Oct 13, 2021
1 parent 8e83f3b commit ccc4813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cicd/iqe_pod/create_iqe_pod.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def _get_base_pod_cfg():
"name": "iqe-tests",
"resources": {
"limits": {"cpu": "1", "memory": "2Gi"},
"requests": {"cpu": "500m", "memory": "512Mi"},
"requests": {"cpu": "500m", "memory": "1Gi"},
},
"stdin": True,
"tty": True,
Expand Down

0 comments on commit ccc4813

Please sign in to comment.