write krm metadata to Krmfile instead of Kustomization

This commit is contained in:
Phillip Wittrock
2020-05-28 12:27:14 -07:00
committed by Phillip Wittrock
parent c1a2bf14da
commit 0e5e2648b3
10 changed files with 335 additions and 42 deletions

10
kyaml/krmfile/krmfile.go Normal file
View File

@@ -0,0 +1,10 @@
// Copyright 2019 The Kubernetes Authors.
// SPDX-License-Identifier: Apache-2.0
package krmfile
// KRMFileName is the file where Krm metadata is stored
const (
// KrmfileName is the name of the file that KRM metadata is written to
KrmfileName = "Krmfile"
)