2025-04-25 18:29:51 +02:00

19 lines
368 B
Go

package cmd
import (
"github.com/carapace-sh/carapace"
"github.com/spf13/cobra"
)
var init_phase_etcdCmd = &cobra.Command{
Use: "etcd",
Short: "Generate static Pod manifest file for local etcd",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(init_phase_etcdCmd).Standalone()
init_phaseCmd.AddCommand(init_phase_etcdCmd)
}