From fd37804b9fb45921d06c8e4e86ca6ed8a42e85dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iago=20L=C3=B3pez=20Galeiras?= Date: Fri, 29 May 2015 15:46:00 +0200 Subject: [PATCH] functional tests: add isolators to the base image This commit adds memory and cpu isolators to test we don't break anything. The next step is adding a functional test that actually checks the isolators are respected. --- tests/image/manifest | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tests/image/manifest b/tests/image/manifest index 23b0598..20a3fbb 100644 --- a/tests/image/manifest +++ b/tests/image/manifest @@ -30,6 +30,20 @@ } ], "isolators": [ + { + "name": "resource/memory", + "value": { + "request": "25M", + "limit": "120M" + } + }, + { + "name": "resource/cpu", + "value": { + "request": "50", + "limit": "100" + } + } ], "mountPoints": [ ],