Skip to content

Commit 927cd05

Browse files
authored
Docs - Fixed double quotes issue with feature-gates
Double quotes was giving error as below, may be need to update the code to accept the double quotes. Error: invalid argument "\"GracefulNodeShutdown=true\"" for "--feature-gates" flag: invalid value of "GracefulNodeShutdown=true", err: strconv.ParseBool: parsing "true\"": invalid syntax
1 parent 498d960 commit 927cd05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/en/docs/reference/command-line-tools-reference/feature-gates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To set feature gates for a component, such as kubelet, use the `--feature-gates`
2929
flag assigned to a list of feature pairs:
3030

3131
```shell
32-
--feature-gates="...,GracefulNodeShutdown=true"
32+
--feature-gates=...,GracefulNodeShutdown=true
3333
```
3434

3535
The following tables are a summary of the feature gates that you can set on

0 commit comments

Comments
 (0)