diff --git a/envbuilder.go b/envbuilder.go index 10773dd5..62c4279e 100644 --- a/envbuilder.go +++ b/envbuilder.go @@ -89,7 +89,11 @@ func Run(ctx context.Context, options Options) error { // Once the legacy environment variables are phased out, this can be // reinstated to the previous default values. if len(options.IgnorePaths) == 0 { - options.IgnorePaths = []string{"/var/run"} + options.IgnorePaths = []string{ + "/var/run", + // KinD adds these paths to pods, so ignore them by default. + "/product_uuid", "/product_name", + } } if options.InitScript == "" { options.InitScript = "sleep infinity"