From 0e004674695e02a512100d80f93216989b61760a Mon Sep 17 00:00:00 2001 From: Yann Hamon Date: Sun, 18 Oct 2020 15:55:32 +0200 Subject: [PATCH] update readme --- Readme.md | 2 +- cmd/kubeconform/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index cab3e78..5af9c4b 100644 --- a/Readme.md +++ b/Readme.md @@ -36,7 +36,7 @@ $ ./bin/kubeconform -h Usage of ./bin/kubeconform: -ignore-missing-schemas skip files with missing schemas instead of failing - -kubernetes-sversion string + -kubernetes-version string version of Kubernetes to validate against (default "1.18.0") -n int number of routines to run in parallel (default 4) diff --git a/cmd/kubeconform/main.go b/cmd/kubeconform/main.go index 30650a5..c09c68b 100644 --- a/cmd/kubeconform/main.go +++ b/cmd/kubeconform/main.go @@ -223,7 +223,7 @@ func realMain() int { var err error var files []string - flag.StringVar(&k8sVersion, "kubernetes-version", "1.18.0", "version of Kubernetes to test against") + flag.StringVar(&k8sVersion, "kubernetes-version", "1.18.0", "version of Kubernetes to validate against") flag.Var(&schemaLocationsParam, "schema-location", "override schemas location search path (can be specified multiple times)") flag.BoolVar(&ignoreMissingSchemas, "ignore-missing-schemas", false, "skip files with missing schemas instead of failing") flag.BoolVar(&summary, "summary", false, "print a summary at the end")