kubekey/cmd/cert.go
Forest-L 5f33244f6a Add cluster certs renew
Signed-off-by: Forest-L <lilin@yunify.com>
2020-11-16 22:44:15 +08:00

13 lines
168 B
Go

package cmd
import "github.com/spf13/cobra"
var certsCmd = &cobra.Command{
Use: "certs",
Short: "cluster certs",
}
func init() {
rootCmd.AddCommand(certsCmd)
}