From 0b54e8e04c480e49c11344ff8d726b8c0a7e9608 Mon Sep 17 00:00:00 2001
From: Wang Zhen <lazybetrayer@gmail.com>
Date: Tue, 2 Jun 2020 20:42:23 +0800
Subject: [PATCH] fix documentation example (#6216)

Signed-off-by: Wang Zhen <lazybetrayer@gmail.com>
---
 docs/vars.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/vars.md b/docs/vars.md
index 716b8a743..bf13b7ccb 100644
--- a/docs/vars.md
+++ b/docs/vars.md
@@ -169,12 +169,12 @@ in the form of dicts of key-value pairs of configuration parameters that will be
 
 ```yml
 kubelet_config_extra_args:
-  EvictionHard:
-    memory.available: "<100Mi"
-  EvictionSoftGracePeriod:
+  evictionHard:
+    memory.available: "100Mi"
+  evictionSoftGracePeriod:
     memory.available: "30s"
-  EvictionSoft:
-    memory.available: "<300Mi"
+  evictionSoft:
+    memory.available: "300Mi"
 ```
 
 The possible vars are:
-- 
GitLab