From aacb8f45538283dc457b4bd1fc9a970a4304f720 Mon Sep 17 00:00:00 2001 From: Sunny Date: Fri, 14 Feb 2020 21:00:42 +0530 Subject: [PATCH] examples/kind: Add timeout unit in config (#201) helm3 requires the timeout value to have a unit. Without this, the test results in the following error: ``` Error: invalid argument "800" for "--timeout" flag: time: missing unit in duration 800 ``` Signed-off-by: Sunny --- examples/kind/test/ct.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/kind/test/ct.yaml b/examples/kind/test/ct.yaml index d40aa573..1ba45a46 100644 --- a/examples/kind/test/ct.yaml +++ b/examples/kind/test/ct.yaml @@ -1 +1 @@ -helm-extra-args: --timeout 800 +helm-extra-args: --timeout 800s