...

Source file src/github.com/linkerd/linkerd2/pkg/charts/static/templates.go

Documentation: github.com/linkerd/linkerd2/pkg/charts/static

     1  //go:generate go run generate.go
     2  //go:build !prod
     3  
     4  package static
     5  
     6  import (
     7  	"net/http"
     8  	"path"
     9  )
    10  
    11  // Templates that will be rendered by `linkerd install`. This is only used on
    12  // dev builds.
    13  var Templates http.FileSystem = http.Dir(path.Join(GetRepoRoot(), "charts"))
    14  

View as plain text