k3s/pkg/cli/kubectl/kubectl.go
Darren Shepherd ae5c585050 Revert "Add config file support"
This reverts commit e1dc3451bc.

Signed-off-by: Darren Shepherd <darren@rancher.com>
2020-08-29 21:44:07 -07:00

12 lines
157 B
Go

package kubectl
import (
"github.com/rancher/k3s/pkg/kubectl"
"github.com/urfave/cli"
)
func Run(ctx *cli.Context) error {
kubectl.Main()
return nil
}