Skip to content

Commit

Permalink
Merge branch 'main' into eng-272
Browse files Browse the repository at this point in the history
  • Loading branch information
wdbaruni authored Oct 13, 2024
2 parents 478c0a8 + f09deb8 commit c1bd864
Show file tree
Hide file tree
Showing 102 changed files with 111 additions and 3,031 deletions.
3 changes: 2 additions & 1 deletion cmd/cli/config/set.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ import (
"github.com/spf13/viper"
"k8s.io/kubectl/pkg/util/i18n"

"k8s.io/kubectl/pkg/util/templates"

"github.com/bacalhau-project/bacalhau/cmd/util"
"github.com/bacalhau-project/bacalhau/cmd/util/flags/cliflags"
"github.com/bacalhau-project/bacalhau/cmd/util/hook"
"github.com/bacalhau-project/bacalhau/pkg/config"
"github.com/bacalhau-project/bacalhau/pkg/config/types"
"github.com/bacalhau-project/bacalhau/pkg/util/templates"
)

var setExample = templates.Examples(i18n.T(`
Expand Down
17 changes: 17 additions & 0 deletions cmd/cli/deprecated/exec.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package deprecated

import (
"github.com/spf13/cobra"
)

func NewExecCommand() *cobra.Command {
cancelCmd := &cobra.Command{
Use: "exec",
Deprecated: "exec was an experimental feature and no longer supported",
RunE: func(cmd *cobra.Command, cmdArgs []string) error {
return nil
},
}

return cancelCmd
}
3 changes: 2 additions & 1 deletion cmd/cli/devstack/devstack.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ import (
"github.com/bacalhau-project/bacalhau/pkg/logger"
"github.com/bacalhau-project/bacalhau/webui"

"k8s.io/kubectl/pkg/util/templates"

"github.com/bacalhau-project/bacalhau/cmd/util"
"github.com/bacalhau-project/bacalhau/pkg/devstack"
"github.com/bacalhau-project/bacalhau/pkg/telemetry"
"github.com/bacalhau-project/bacalhau/pkg/util/templates"

"github.com/spf13/cobra"
)
Expand Down
3 changes: 2 additions & 1 deletion cmd/cli/docker/docker_run.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import (
"github.com/spf13/viper"
"k8s.io/kubectl/pkg/util/i18n"

"k8s.io/kubectl/pkg/util/templates"

"github.com/bacalhau-project/bacalhau/cmd/cli/helpers"
"github.com/bacalhau-project/bacalhau/cmd/util"
"github.com/bacalhau-project/bacalhau/cmd/util/flags/cliflags"
Expand All @@ -20,7 +22,6 @@ import (
"github.com/bacalhau-project/bacalhau/pkg/publicapi/apimodels"
clientv2 "github.com/bacalhau-project/bacalhau/pkg/publicapi/client/v2"
"github.com/bacalhau-project/bacalhau/pkg/userstrings"
"github.com/bacalhau-project/bacalhau/pkg/util/templates"
)

var (
Expand Down
79 changes: 0 additions & 79 deletions cmd/cli/exec/args.go

This file was deleted.

Loading

0 comments on commit c1bd864

Please sign in to comment.