Browse Source

Merge pull request #182 from ibuildthecloud/revert

Fix containerd debug log env var
pull/184/head
Darren Shepherd 6 years ago committed by GitHub
parent
commit
7fbeafea46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      pkg/agent/containerd/containerd.go

2
pkg/agent/containerd/containerd.go

@ -63,7 +63,7 @@ func Run(ctx context.Context, cfg *config.Node) error {
}
if os.Getenv("CONTAINERD_LOG_LEVEL") != "" {
args = append(args, "-l", "CONTAINERD_LOG_LEVEL")
args = append(args, "-l", os.Getenv("CONTAINERD_LOG_LEVEL"))
}
stdOut := io.Writer(os.Stdout)

Loading…
Cancel
Save