Skip to content
Snippets Groups Projects
Commit 88fe3403 authored by Maxime Guyot's avatar Maxime Guyot Committed by Kubernetes Prow Robot
Browse files

Add overcommitment for CPU in Packet CI playbook (#4597)

parent 04f2682a
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,11 @@ vm_cpu_sockets: 1
vm_cpu_threads: 2
vm_memory: 4096Mi
# Request/Limit allocation settings
cpu_allocation_ratio: 0.5
memory_allocation_ratio: 1
# Default path for inventory
inventory_path: "/tmp/{{ test_name }}/inventory"
......
......@@ -34,6 +34,9 @@ spec:
threads: {{ vm_cpu_cores }}
resources:
requests:
memory: {{ vm_memory * memory_allocation_ratio }}
cpu: {{ vm_cpu_cores * cpu_allocation_ratio }}
limits:
memory: {{ vm_memory }}
cpu: {{ vm_cpu_cores }}
networks:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment