pcb demo code.
[ealt-edge.git] / ocd / cli / ealt / cmd / clean.go
index daa96d8..9e94d4b 100644 (file)
@@ -16,7 +16,6 @@ limitations under the License.
 package cmd
 
 import (
-
        cleancmds "ealt/cmd/clean"
        "github.com/spf13/cobra"
 )
@@ -25,23 +24,16 @@ import (
 var cleanCmd = &cobra.Command{
        Use:   "clean",
        Short: "To uninstall ealt environment or specific component or node.",
-       Long: `To uninstall ealt environment or specific component or node.`,
+       Long:  `To uninstall ealt environment or specific component or node.`,
 }
 
 func init() {
        cleanCmd.AddCommand(cleancmds.NewAllCommand())
-       //ealt init infra
-       cleanCmd.AddCommand(cleancmds.NewInfraCommand())
-       //ealt init manager
-       cleanCmd.AddCommand(cleancmds.NewMecmCommand())
+
        //ealt init edge
        cleanCmd.AddCommand(cleancmds.NewEdgeCommand())
-       //ealt init k8s
-       cleanCmd.AddCommand(cleancmds.NewK8SCommand())
-       //ealt init k3s
-       cleanCmd.AddCommand(cleancmds.NewK3SCommand())
 
        //Add init subcommand to root command.
        rootCmd.AddCommand(cleanCmd)
 
-}
\ No newline at end of file
+}