cmd/up: show outputs at the end of the config execution
Signed-off-by: Sam Alba <sam.alba@gmail.com>
This commit is contained in:
parent
44a919e7f8
commit
d6b6142065
@ -12,7 +12,9 @@ import (
|
|||||||
"go.dagger.io/dagger/cmd/dagger/logger"
|
"go.dagger.io/dagger/cmd/dagger/logger"
|
||||||
"go.dagger.io/dagger/environment"
|
"go.dagger.io/dagger/environment"
|
||||||
"go.dagger.io/dagger/solver"
|
"go.dagger.io/dagger/solver"
|
||||||
|
"go.dagger.io/dagger/state"
|
||||||
|
|
||||||
|
"github.com/rs/zerolog/log"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
)
|
)
|
||||||
@ -35,56 +37,60 @@ var listCmd = &cobra.Command{
|
|||||||
workspace := common.CurrentWorkspace(ctx)
|
workspace := common.CurrentWorkspace(ctx)
|
||||||
st := common.CurrentEnvironmentState(ctx, workspace)
|
st := common.CurrentEnvironmentState(ctx, workspace)
|
||||||
|
|
||||||
lg = lg.With().
|
ListOutputs(ctx, st, viper.GetBool("all"))
|
||||||
Str("environment", st.Name).
|
|
||||||
Logger()
|
|
||||||
|
|
||||||
c, err := client.New(ctx, "", false)
|
|
||||||
if err != nil {
|
|
||||||
lg.Fatal().Err(err).Msg("unable to create client")
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err = c.Do(ctx, st, func(ctx context.Context, env *environment.Environment, s solver.Solver) error {
|
|
||||||
outputs, err := env.ScanOutputs(ctx)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
w := tabwriter.NewWriter(os.Stdout, 0, 4, 2, ' ', 0)
|
|
||||||
fmt.Fprintln(w, "Output\tType\tValue\tDescription")
|
|
||||||
|
|
||||||
for _, out := range outputs {
|
|
||||||
valStr := "-"
|
|
||||||
|
|
||||||
if out.IsConcreteR() == nil {
|
|
||||||
valStr, err = out.Cue().String()
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
} else if !viper.GetBool("all") {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
valStr = strings.ReplaceAll(valStr, "\n", "\\n")
|
|
||||||
|
|
||||||
fmt.Fprintf(w, "%s\t%s\t%s\t%s\n",
|
|
||||||
out.Path(),
|
|
||||||
common.ValueType(out),
|
|
||||||
valStr,
|
|
||||||
common.ValueDocString(out),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
w.Flush()
|
|
||||||
return nil
|
|
||||||
})
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
lg.Fatal().Err(err).Msg("failed to query environment")
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func ListOutputs(ctx context.Context, st *state.State, all bool) {
|
||||||
|
lg := log.Ctx(ctx).With().
|
||||||
|
Str("environment", st.Name).
|
||||||
|
Logger()
|
||||||
|
|
||||||
|
c, err := client.New(ctx, "", false)
|
||||||
|
if err != nil {
|
||||||
|
lg.Fatal().Err(err).Msg("unable to create client")
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = c.Do(ctx, st, func(ctx context.Context, env *environment.Environment, s solver.Solver) error {
|
||||||
|
outputs, err := env.ScanOutputs(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
w := tabwriter.NewWriter(os.Stdout, 0, 4, 2, ' ', 0)
|
||||||
|
fmt.Fprintln(w, "Output\tType\tValue\tDescription")
|
||||||
|
|
||||||
|
for _, out := range outputs {
|
||||||
|
valStr := "-"
|
||||||
|
|
||||||
|
if out.IsConcreteR() == nil {
|
||||||
|
valStr, err = out.Cue().String()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else if !all {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
valStr = strings.ReplaceAll(valStr, "\n", "\\n")
|
||||||
|
|
||||||
|
fmt.Fprintf(w, "%s\t%s\t%s\t%s\n",
|
||||||
|
out.Path(),
|
||||||
|
common.ValueType(out),
|
||||||
|
valStr,
|
||||||
|
common.ValueDocString(out),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
w.Flush()
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
lg.Fatal().Err(err).Msg("failed to query environment")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
listCmd.Flags().BoolP("all", "a", false, "List all outputs (include non-concrete)")
|
listCmd.Flags().BoolP("all", "a", false, "List all outputs (include non-concrete)")
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@ import (
|
|||||||
"cuelang.org/go/cue"
|
"cuelang.org/go/cue"
|
||||||
"go.dagger.io/dagger/client"
|
"go.dagger.io/dagger/client"
|
||||||
"go.dagger.io/dagger/cmd/dagger/cmd/common"
|
"go.dagger.io/dagger/cmd/dagger/cmd/common"
|
||||||
|
"go.dagger.io/dagger/cmd/dagger/cmd/output"
|
||||||
"go.dagger.io/dagger/cmd/dagger/logger"
|
"go.dagger.io/dagger/cmd/dagger/logger"
|
||||||
"go.dagger.io/dagger/compiler"
|
"go.dagger.io/dagger/compiler"
|
||||||
"go.dagger.io/dagger/environment"
|
"go.dagger.io/dagger/environment"
|
||||||
@ -46,6 +47,8 @@ var upCmd = &cobra.Command{
|
|||||||
if err := workspace.Save(ctx, st); err != nil {
|
if err := workspace.Save(ctx, st); err != nil {
|
||||||
lg.Fatal().Err(err).Msg("failed to update environment")
|
lg.Fatal().Err(err).Msg("failed to update environment")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output.ListOutputs(ctx, st, false)
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user