Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

docs: Delete the VCPUs field #340

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 0 additions & 4 deletions virtcontainers/documentation/api/1.0/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,6 @@ type SandboxConfig struct {
```Go
// Resources describes VM resources configuration.
type Resources struct {
// VCPUs is the number of available virtual CPUs.
VCPUs uint

// Memory is the amount of available memory in MiB.
Memory uint
}
Expand Down Expand Up @@ -902,7 +899,6 @@ func Example_createAndStartSandbox() {

// VM resources
vmConfig := vc.Resources{
VCPUs: 4,
Memory: 1024,
}

Expand Down