Skip to content

Commit

Permalink
Convert kube-env to string so we can read it in debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
marcwickenden committed Mar 28, 2021
1 parent 7fe7115 commit 1974bca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/gke/gke.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func (g *Generator) bootstrapKubeletConfig() error {
}
}

logger.Debug("kubeenv: %v", kubeenv)
logger.Debug("kubeenv: %v", string(kubeenv))

err = yaml.Unmarshal(kubeenv, &g.kubeEnv)
if err != nil {
Expand Down

0 comments on commit 1974bca

Please sign in to comment.