From d606935ad3809cb29079e1b2fb1c03f059f3fe44 Mon Sep 17 00:00:00 2001 From: shivdudhani Date: Mon, 20 May 2019 18:19:13 -0700 Subject: [PATCH] kind to lowercase before check --- client/client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/client.go b/client/client.go index 6374b4be4d..960a4f7a8d 100644 --- a/client/client.go +++ b/client/client.go @@ -4,6 +4,7 @@ import ( "fmt" "log" "os" + "strings" "time" types "github.com/nirmata/kube-policy/pkg/apis/policy/v1alpha1" @@ -309,6 +310,7 @@ func (c *Client) waitUntilNamespaceIsCreated(name string) error { // KindIsSupported checks if the kind is a registerd GVK func (c *Client) KindIsSupported(kind string) bool { + kind = strings.ToLower(kind) + "s" buildGVKMapper(c.clientConfig, false) _, ok := getValue(kind) return ok