Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pkg/cmd/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (

var buildCmd = cli.Command{
Name: "build",
Aliases: []string{"builds"},
Usage: "Build an image from a Dockerfile",
ArgsUsage: "[path]",
Description: `Build an image from a Dockerfile and source context.
Expand Down
5 changes: 3 additions & 2 deletions pkg/cmd/devicecmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ import (
)

var deviceCmd = cli.Command{
Name: "device",
Usage: "Manage PCI/GPU devices for passthrough",
Name: "device",
Aliases: []string{"devices"},
Usage: "Manage PCI/GPU devices for passthrough",
Description: `Manage PCI devices for passthrough to virtual machines.

This command allows you to discover available passthrough-capable devices,
Expand Down
5 changes: 3 additions & 2 deletions pkg/cmd/imagecmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ import (
)

var imageCmd = cli.Command{
Name: "image",
Usage: "Manage images",
Name: "image",
Aliases: []string{"images"},
Usage: "Manage images",
Commands: []*cli.Command{
&imageCreateCmd,
&imageListCmd,
Expand Down
5 changes: 3 additions & 2 deletions pkg/cmd/ingresscmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ import (
)

var ingressCmd = cli.Command{
Name: "ingress",
Usage: "Manage ingresses",
Name: "ingress",
Aliases: []string{"ingresses"},
Usage: "Manage ingresses",
Commands: []*cli.Command{
&ingressCreateCmd,
&ingressListCmd,
Expand Down
5 changes: 3 additions & 2 deletions pkg/cmd/resourcecmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ import (
)

var resourcesCmd = cli.Command{
Name: "resources",
Usage: "Show server resource capacity and allocation status",
Name: "resources",
Aliases: []string{"resource"},
Usage: "Show server resource capacity and allocation status",
Description: `Display current host resource capacity, allocation status, and per-instance breakdown.

Resources include CPU, memory, disk, network, and GPU (if available).
Expand Down
5 changes: 3 additions & 2 deletions pkg/cmd/snapshotcmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ import (
)

var snapshotCmd = cli.Command{
Name: "snapshot",
Usage: "Manage instance snapshots",
Name: "snapshot",
Aliases: []string{"snapshots"},
Usage: "Manage instance snapshots",
Commands: []*cli.Command{
&snapshotCreateCmd,
&snapshotRestoreCmd,
Expand Down
5 changes: 3 additions & 2 deletions pkg/cmd/volumecmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ import (
)

var volumeCmd = cli.Command{
Name: "volume",
Usage: "Manage volumes",
Name: "volume",
Aliases: []string{"volumes"},
Usage: "Manage volumes",
Commands: []*cli.Command{
&volumeCreateCmd,
&volumeListCmd,
Expand Down
Loading