...

Source file src/edge-infra.dev/pkg/edge/gitops/fn/annotations.go

Documentation: edge-infra.dev/pkg/edge/gitops/fn

     1  package fn
     2  
     3  import (
     4  	"sigs.k8s.io/kustomize/kyaml/kio/kioutil"
     5  )
     6  
     7  // IDAnnotation is an internal-only annotation used in sigs.k8s.io/kustomize
     8  // that we need to work with
     9  var IDAnnotation = "config.k8s.io/id"
    10  
    11  // PathAnnotation is a re-export of kioutil.PathAnnotation for convenience
    12  var PathAnnotation = kioutil.PathAnnotation
    13  
    14  // IndexAnnotation is a re-export of kioutil.IndexAnnotation for convenience
    15  var IndexAnnotation = kioutil.IndexAnnotation
    16  

View as plain text