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 "github.com/linkerd/linkerd2/pkg/charts/static" 11 ) 12 13 // Templates that will be rendered by `linkerd install`. This is only used on 14 // dev builds. 15 var Templates http.FileSystem = http.Dir(path.Join(static.GetRepoRoot(), "multicluster/charts")) 16