-
Notifications
You must be signed in to change notification settings - Fork 746
Add runtime option for the docker container driver #3896
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -107,14 +107,19 @@ type User struct { | |
| } | ||
|
|
||
| type VMOpts struct { | ||
| QEMU QEMUOpts `yaml:"qemu,omitempty" json:"qemu,omitempty"` | ||
| QEMU QEMUOpts `yaml:"qemu,omitempty" json:"qemu,omitempty"` | ||
| Docker DockerOpts `yaml:"docker,omitempty" json:"docker,omitempty"` | ||
| } | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This contradicts to the current VM driver design.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you have a pointer to the new "opts"?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay, so there is no actual code for it yet |
||
|
|
||
| type QEMUOpts struct { | ||
| MinimumVersion *string `yaml:"minimumVersion,omitempty" json:"minimumVersion,omitempty" jsonschema:"nullable"` | ||
| CPUType CPUType `yaml:"cpuType,omitempty" json:"cpuType,omitempty" jsonschema:"nullable"` | ||
| } | ||
|
|
||
| type DockerOpts struct { | ||
| Runtime *string `yaml:"runtime,omitempty" json:"runtime,omitempty" jsonschema:"nullable"` | ||
| } | ||
|
|
||
| type Rosetta struct { | ||
| Enabled *bool `yaml:"enabled,omitempty" json:"enabled,omitempty" jsonschema:"nullable"` | ||
| BinFmt *bool `yaml:"binfmt,omitempty" json:"binfmt,omitempty" jsonschema:"nullable"` | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.