...

Source file src/sigs.k8s.io/kustomize/kyaml/ext/ext.go

Documentation: sigs.k8s.io/kustomize/kyaml/ext

     1  // Copyright 2019 The Kubernetes Authors.
     2  // SPDX-License-Identifier: Apache-2.0
     3  
     4  package ext
     5  
     6  // IgnoreFileName returns the name for ignore files in
     7  // packages. It can be overridden by tools using this library.
     8  var IgnoreFileName = func() string {
     9  	return ".krmignore"
    10  }
    11  

View as plain text