Skip to content

Commit 99ff820

Browse files
Make CheckAllCommands error non-fatal
1 parent dbac93d commit 99ff820

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cmd/eksctl/create.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,8 @@ func doCreateCluster(cfg *eks.ClusterConfig) error {
152152
// also check heptio-authenticator
153153
// TODO: https://github.com/weaveworks/eksctl/issues/30
154154
if err := utils.CheckAllCommands(kubeconfigPath); err != nil {
155-
return err
155+
logger.Critical(err.Error())
156+
logger.Info("cluster should be functions despite missing client binaries that need to be installed in the PATH")
156157
}
157158
}
158159

0 commit comments

Comments
 (0)