Add crictl

This commit is contained in:
Darren Shepherd
2019-02-07 21:08:10 -07:00
parent 76a191844c
commit 793ac4fb89
9 changed files with 124 additions and 13 deletions

View File

@@ -10,6 +10,7 @@ import (
"github.com/rancher/k3s/pkg/cli/agent"
"github.com/rancher/k3s/pkg/cli/cmds"
"github.com/rancher/k3s/pkg/cli/crictl"
"github.com/rancher/k3s/pkg/cli/kubectl"
"github.com/rancher/k3s/pkg/cli/server"
"github.com/sirupsen/logrus"
@@ -22,6 +23,7 @@ func main() {
cmds.NewServerCommand(server.Run),
cmds.NewAgentCommand(agent.Run),
cmds.NewKubectlCommand(kubectl.Run),
cmds.NewCRICTL(crictl.Run),
}
if err := app.Run(os.Args); err != nil {