From 1d90ba7c7ba2c2747d817ebe6bf9fae8acee4658 Mon Sep 17 00:00:00 2001 From: Jerome Brette Date: Sat, 21 Sep 2019 02:19:56 +0000 Subject: [PATCH] Fix typo in apiVersion yaml declaration --- pkg/types/kustomization.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/types/kustomization.go b/pkg/types/kustomization.go index c38e889c1..c11165987 100644 --- a/pkg/types/kustomization.go +++ b/pkg/types/kustomization.go @@ -17,7 +17,7 @@ const ( // No need for a direct dependence; the fields are stable. type TypeMeta struct { Kind string `json:"kind,omitempty" yaml:"kind,omitempty"` - APIVersion string `json:"apiVersion,omitempty" yaml:"apiversion,omitempty"` + APIVersion string `json:"apiVersion,omitempty" yaml:"apiVersion,omitempty"` } // Kustomization holds the information needed to generate customized k8s api resources.