Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Command = &cli.Command{ Name: "container", Usage: "run cluster container", Flags: []cli.Flag{ app.NamespaceFlag, &cli.StringFlag{ Name: "image", Usage: "container image to start", }, app.PortsFlag, }, Action: func(ctx context.Context, cmd *cli.Command) error { client := app.MustClient(ctx, cmd) path, err := os.Getwd() if err != nil { return err } image := cmd.String("image") namespace := app.Namespace(ctx, cmd) if image == "" { image = "debian" } if namespace == "" { namespace = client.Namespace() } tunnels, _ := app.Ports(ctx, cmd) return Run(ctx, client, namespace, image, true, true, path, tunnels) }, }
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.