...

Source file src/sigs.k8s.io/kustomize/api/internal/loader/errors.go

Documentation: sigs.k8s.io/kustomize/api/internal/loader

     1  // Copyright 2022 The Kubernetes Authors.
     2  // SPDX-License-Identifier: Apache-2.0
     3  
     4  package loader
     5  
     6  import "sigs.k8s.io/kustomize/kyaml/errors"
     7  
     8  var (
     9  	ErrHTTP     = errors.Errorf("HTTP Error")
    10  	ErrRtNotDir = errors.Errorf("must build at directory")
    11  )
    12  

View as plain text