Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

EVEREST-420: disable provision command #135

Merged
2 commits merged into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion commands/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func newDeleteCmd(l *zap.SugaredLogger) *cobra.Command {
Use: "delete",
}

cmd.AddCommand(delete.NewMySQLCmd(l))
// cmd.AddCommand(delete.NewMySQLCmd(l))
cmd.AddCommand(delete.NewClusterCmd(l))

return cmd
Expand Down
2 changes: 1 addition & 1 deletion commands/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func NewRootCmd(l *zap.SugaredLogger) *cobra.Command {
rootCmd.PersistentFlags().Bool("json", false, "Set output type to JSON")

rootCmd.AddCommand(newInstallCmd(l))
rootCmd.AddCommand(newProvisionCmd(l))
// rootCmd.AddCommand(newProvisionCmd(l))
rootCmd.AddCommand(newListCmd(l))
This conversation was marked as resolved.
Show resolved Hide resolved
rootCmd.AddCommand(newDeleteCmd(l))

Expand Down
Loading