update info of infra/README.md
[ealt-edge.git] / ocd / cli / ealt / cmd / init.go
index b6c7f29..843146c 100644 (file)
@@ -16,7 +16,6 @@ limitations under the License.
 package cmd
 
 import (
-
        initCmds "ealt/cmd/init"
 
        "github.com/spf13/cobra"
@@ -35,18 +34,11 @@ var initCmd = &cobra.Command{
 
 func init() {
        //Adding the various sub-commands of init command
-       //Adding all subcommand to init 
+       //Adding all subcommand to init
        initCmd.AddCommand(initCmds.NewAllCommand())
-       //ealt init infra
-       initCmd.AddCommand(initCmds.NewInfraCommand())
-       //ealt init manager
-       initCmd.AddCommand(initCmds.NewMecmCommand())
+
        //ealt init edge
        initCmd.AddCommand(initCmds.NewEdgeCommand())
-       //ealt init k8s
-       initCmd.AddCommand(initCmds.NewK8SCommand())
-       //ealt init k3s
-       initCmd.AddCommand(initCmds.NewK3SCommand())
 
        //Add init subcommand to root command.
        rootCmd.AddCommand(initCmd)