Merge pull request #591 from erikwilson/add-ctr

Build & enable ctr with k3s server
This commit is contained in:
Erik Wilson
2019-06-30 13:06:00 -07:00
committed by GitHub
6 changed files with 71 additions and 47 deletions

11
pkg/cli/ctr/ctr.go Normal file
View File

@@ -0,0 +1,11 @@
package ctr
import (
"github.com/rancher/k3s/pkg/ctr"
"github.com/urfave/cli"
)
func Run(ctx *cli.Context) error {
ctr.Main()
return nil
}