manifest becomes kustomization

This commit is contained in:
Jeffrey Regan
2018-04-12 13:31:52 -07:00
parent 5c684d789c
commit 8f0a04c84d
32 changed files with 289 additions and 287 deletions

View File

@@ -16,9 +16,10 @@ limitations under the License.
package constants
// KustomizeFileName is the Well-Known File Name for a kubernetes app manifest.
const KustomizeSuffix = ".yaml"
const KustomizeFileName = "kustomize" + KustomizeSuffix
const KustomizationSuffix = ".yaml"
// KustomizationFileName is the Well-Known File Name for a kustomize configuration file
const KustomizationFileName = "kustomize" + KustomizationSuffix
// Configmap behaviors
const CreateBehavior = "create"