Skip to content

Commit

Permalink
Make CheckAllCommands error non-fatal
Browse files Browse the repository at this point in the history
  • Loading branch information
errordeveloper committed Jun 5, 2018
1 parent dbac93d commit 99ff820
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/eksctl/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ func doCreateCluster(cfg *eks.ClusterConfig) error {
// also check heptio-authenticator
// TODO: https://github.com/weaveworks/eksctl/issues/30
if err := utils.CheckAllCommands(kubeconfigPath); err != nil {
return err
logger.Critical(err.Error())
logger.Info("cluster should be functions despite missing client binaries that need to be installed in the PATH")
}
}

Expand Down

0 comments on commit 99ff820

Please sign in to comment.