Skip to content

Commit

Permalink
Fix config init command fails if no flyte dir doesn't exist (#150)
Browse files Browse the repository at this point in the history
* Added setup flytedir before config init

Signed-off-by: Yuvraj <code@evalsocket.dev>
  • Loading branch information
yindia committed Jul 22, 2021
1 parent 2d65956 commit a66e669
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions flytectl/cmd/configuration/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import (

"github.com/flyteorg/flytestdlib/logger"

"github.com/flyteorg/flytectl/pkg/util"

"github.com/flyteorg/flytectl/pkg/configutil"

initConfig "github.com/flyteorg/flytectl/cmd/config/subcommand/config"
Expand Down Expand Up @@ -69,6 +71,10 @@ func configInitFunc(ctx context.Context, args []string, cmdCtx cmdcore.CommandCo

func initFlytectlConfig(ctx context.Context, reader io.Reader) error {

if err := util.SetupFlyteDir(); err != nil {
return err
}

templateValues := configutil.ConfigTemplateSpec{
Host: "dns:///localhost:30081",
Insecure: initConfig.DefaultConfig.Insecure,
Expand All @@ -87,6 +93,8 @@ func initFlytectlConfig(ctx context.Context, reader io.Reader) error {
if strings.ToUpper(result) == "GCS" {
templateStr = configutil.GetGoogleCloudTemplate()
}
} else {
logger.Infof(ctx, "Init flytectl config for remote cluster, Please update your storage config in %s. Learn more about the config here https://docs.flyte.org/projects/flytectl/en/latest/index.html#configure", configutil.ConfigFile)
}
}
var _err error
Expand All @@ -100,9 +108,9 @@ func initFlytectlConfig(ctx context.Context, reader io.Reader) error {
_err = configutil.SetupConfig(configutil.ConfigFile, templateStr, templateValues)
}
}

if len(initConfig.DefaultConfig.Host) > 0 {
logger.Infof(ctx, "Init flytectl config for remote cluster, Please update your storage config in %s. Learn more about the config here https://docs.flyte.org/projects/flytectl/en/latest/index.html#configure", configutil.ConfigFile)
if _err != nil {
return _err
}
return _err
fmt.Printf("Init flytectl config file at [%s]", configutil.ConfigFile)
return nil
}

0 comments on commit a66e669

Please sign in to comment.