From e60892483e5b7e5dffa95fc3f121646a96ca270f Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Mon, 13 Oct 2025 12:36:27 +0200 Subject: [PATCH] Fix typo (#339) --- pkg/validator/validator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/validator/validator.go b/pkg/validator/validator.go index 2412ac8..3c9d6f6 100644 --- a/pkg/validator/validator.go +++ b/pkg/validator/validator.go @@ -63,7 +63,7 @@ type Opts struct { SkipKinds map[string]struct{} // List of resource Kinds to ignore RejectKinds map[string]struct{} // List of resource Kinds to reject KubernetesVersion string // Kubernetes Version - has to match one in https://github.com/instrumenta/kubernetes-json-schema - Strict bool // thros an error if resources contain undocumented fields + Strict bool // Throws an error if resources contain undocumented fields IgnoreMissingSchemas bool // skip a resource if no schema for that resource can be found }