Merge pull request #1550 from keleustes/apiversion

Fix typo yaml declaration of APIVersion field of Kustomization type
This commit is contained in:
Kubernetes Prow Robot
2019-09-23 09:25:24 -07:00
committed by GitHub

View File

@@ -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.