From 6117d2012f5f62fca6e540e4b1b1e3b3da565579 Mon Sep 17 00:00:00 2001 From: Paulo Ferreira Date: Wed, 2 Nov 2022 10:55:42 +0000 Subject: [PATCH] Update README memory limit resources typo (#158) Current documentation provides an invalid value for memory limit. The K6 "k6-sample-21" is invalid: spec.runner.resources.limits.memory: Invalid value: "1000mi": spec.runner.resources.limits.memory in body should match '^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fff14e26..055f4264 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ spec: resources: limits: cpu: 200m - memory: 1000mi + memory: 1000Mi requests: cpu: 100m memory: 500Mi