diff --git a/README.md b/README.md index 5253a0c..288e59a 100644 --- a/README.md +++ b/README.md @@ -217,7 +217,7 @@ docker run --rm --name hck-tmp-local --network host -it \ kubectl klock -n hckops pods ``` -Depending on your local settings, you might need to override IPv6 config in your *local* cluster to use the `--network-vpn` flag. Set also `--embed-certs` if you need to access the cluster using the dev tools +Depending on your local environment, you might need to override IPv6 config in the *local* cluster to use the `--network-vpn` flag. Set also `--embed-certs` if you need to use the dev tools ```bash # starts local cluster minikube start --embed-certs \ diff --git a/internal/command/template/list.go b/internal/command/template/list.go index c48ed8c..76b16fe 100644 --- a/internal/command/template/list.go +++ b/internal/command/template/list.go @@ -2,6 +2,7 @@ package template import ( "fmt" + "github.com/MakeNowJust/heredoc" "github.com/pkg/errors" "github.com/rs/zerolog/log" diff --git a/pkg/box/docker/docker.go b/pkg/box/docker/docker.go index 2adccbd..252f373 100644 --- a/pkg/box/docker/docker.go +++ b/pkg/box/docker/docker.go @@ -2,6 +2,7 @@ package docker import ( "fmt" + "github.com/pkg/errors" "golang.org/x/exp/maps" "golang.org/x/exp/slices"