File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,13 @@ type Spec struct {
3333// VM contains information for virtual-machine-based runtimes.
3434type VM struct {
3535 // Kernel specifies kernel-related configuration for virtual-machine-based runtimes.
36- Kernel Kernel `json:"kernel"`
36+ Kernel VMKernel `json:"kernel"`
3737 // ImagePath is the host path to the root filesystem image on the host which can be used by a virtual-machine-based runtime.
3838 ImagePath string `json:"imagePath"`
3939}
4040
41- // Kernel contains information about the kernel to use for a virtual machine.
42- type Kernel struct {
41+ // VMKernel contains information about the kernel to use for a virtual machine.
42+ type VMKernel struct {
4343 // Path is the host path to the kernel used to boot the virtual machine.
4444 Path string `json:"path"`
4545 // Parameters specifies parameters to pass to the kernel.
You can’t perform that action at this time.
0 commit comments