mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-28 04:21:03 +00:00
Merge pull request #9930 from likebreath/0627/clh_v40.0
Upgrade to Cloud Hypervisor v40.0
This commit is contained in:
commit
05848d0c34
@ -655,7 +655,7 @@ components:
|
|||||||
guest_numa_id: 3
|
guest_numa_id: 3
|
||||||
rng:
|
rng:
|
||||||
iommu: false
|
iommu: false
|
||||||
src: /dev/urandom
|
src: src
|
||||||
sgx_epc:
|
sgx_epc:
|
||||||
- prefault: false
|
- prefault: false
|
||||||
size: 7
|
size: 7
|
||||||
@ -1082,7 +1082,7 @@ components:
|
|||||||
guest_numa_id: 3
|
guest_numa_id: 3
|
||||||
rng:
|
rng:
|
||||||
iommu: false
|
iommu: false
|
||||||
src: /dev/urandom
|
src: src
|
||||||
sgx_epc:
|
sgx_epc:
|
||||||
- prefault: false
|
- prefault: false
|
||||||
size: 7
|
size: 7
|
||||||
@ -1366,11 +1366,9 @@ components:
|
|||||||
- 3
|
- 3
|
||||||
properties:
|
properties:
|
||||||
boot_vcpus:
|
boot_vcpus:
|
||||||
default: 1
|
|
||||||
minimum: 1
|
minimum: 1
|
||||||
type: integer
|
type: integer
|
||||||
max_vcpus:
|
max_vcpus:
|
||||||
default: 1
|
|
||||||
minimum: 1
|
minimum: 1
|
||||||
type: integer
|
type: integer
|
||||||
topology:
|
topology:
|
||||||
@ -1794,10 +1792,9 @@ components:
|
|||||||
RngConfig:
|
RngConfig:
|
||||||
example:
|
example:
|
||||||
iommu: false
|
iommu: false
|
||||||
src: /dev/urandom
|
src: src
|
||||||
properties:
|
properties:
|
||||||
src:
|
src:
|
||||||
default: /dev/urandom
|
|
||||||
type: string
|
type: string
|
||||||
iommu:
|
iommu:
|
||||||
default: false
|
default: false
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
|
|
||||||
Name | Type | Description | Notes
|
Name | Type | Description | Notes
|
||||||
------------ | ------------- | ------------- | -------------
|
------------ | ------------- | ------------- | -------------
|
||||||
**BootVcpus** | **int32** | | [default to 1]
|
**BootVcpus** | **int32** | |
|
||||||
**MaxVcpus** | **int32** | | [default to 1]
|
**MaxVcpus** | **int32** | |
|
||||||
**Topology** | Pointer to [**CpuTopology**](CpuTopology.md) | | [optional]
|
**Topology** | Pointer to [**CpuTopology**](CpuTopology.md) | | [optional]
|
||||||
**KvmHyperv** | Pointer to **bool** | | [optional] [default to false]
|
**KvmHyperv** | Pointer to **bool** | | [optional] [default to false]
|
||||||
**MaxPhysBits** | Pointer to **int32** | | [optional]
|
**MaxPhysBits** | Pointer to **int32** | | [optional]
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
Name | Type | Description | Notes
|
Name | Type | Description | Notes
|
||||||
------------ | ------------- | ------------- | -------------
|
------------ | ------------- | ------------- | -------------
|
||||||
**Src** | **string** | | [default to "/dev/urandom"]
|
**Src** | **string** | |
|
||||||
**Iommu** | Pointer to **bool** | | [optional] [default to false]
|
**Iommu** | Pointer to **bool** | | [optional] [default to false]
|
||||||
|
|
||||||
## Methods
|
## Methods
|
||||||
|
@ -43,10 +43,6 @@ func NewCpusConfig(bootVcpus int32, maxVcpus int32) *CpusConfig {
|
|||||||
// but it doesn't guarantee that properties required by API are set
|
// but it doesn't guarantee that properties required by API are set
|
||||||
func NewCpusConfigWithDefaults() *CpusConfig {
|
func NewCpusConfigWithDefaults() *CpusConfig {
|
||||||
this := CpusConfig{}
|
this := CpusConfig{}
|
||||||
var bootVcpus int32 = 1
|
|
||||||
this.BootVcpus = bootVcpus
|
|
||||||
var maxVcpus int32 = 1
|
|
||||||
this.MaxVcpus = maxVcpus
|
|
||||||
var kvmHyperv bool = false
|
var kvmHyperv bool = false
|
||||||
this.KvmHyperv = &kvmHyperv
|
this.KvmHyperv = &kvmHyperv
|
||||||
return &this
|
return &this
|
||||||
|
@ -37,8 +37,6 @@ func NewRngConfig(src string) *RngConfig {
|
|||||||
// but it doesn't guarantee that properties required by API are set
|
// but it doesn't guarantee that properties required by API are set
|
||||||
func NewRngConfigWithDefaults() *RngConfig {
|
func NewRngConfigWithDefaults() *RngConfig {
|
||||||
this := RngConfig{}
|
this := RngConfig{}
|
||||||
var src string = "/dev/urandom"
|
|
||||||
this.Src = src
|
|
||||||
var iommu bool = false
|
var iommu bool = false
|
||||||
this.Iommu = &iommu
|
this.Iommu = &iommu
|
||||||
return &this
|
return &this
|
||||||
|
@ -667,11 +667,9 @@ components:
|
|||||||
properties:
|
properties:
|
||||||
boot_vcpus:
|
boot_vcpus:
|
||||||
minimum: 1
|
minimum: 1
|
||||||
default: 1
|
|
||||||
type: integer
|
type: integer
|
||||||
max_vcpus:
|
max_vcpus:
|
||||||
minimum: 1
|
minimum: 1
|
||||||
default: 1
|
|
||||||
type: integer
|
type: integer
|
||||||
topology:
|
topology:
|
||||||
$ref: "#/components/schemas/CpuTopology"
|
$ref: "#/components/schemas/CpuTopology"
|
||||||
@ -736,7 +734,6 @@ components:
|
|||||||
size:
|
size:
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
default: 512 MB
|
|
||||||
file:
|
file:
|
||||||
type: string
|
type: string
|
||||||
mergeable:
|
mergeable:
|
||||||
@ -772,7 +769,6 @@ components:
|
|||||||
size:
|
size:
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
default: 512 MB
|
|
||||||
hotplug_size:
|
hotplug_size:
|
||||||
type: integer
|
type: integer
|
||||||
format: int64
|
format: int64
|
||||||
@ -857,7 +853,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
rate_limiter_config:
|
rate_limiter_config:
|
||||||
$ref: "#/components/schemas/RateLimiterConfig"
|
$ref: "#/components/schemas/RateLimiterConfig"
|
||||||
|
|
||||||
VirtQueueAffinity:
|
VirtQueueAffinity:
|
||||||
required:
|
required:
|
||||||
- queue_index
|
- queue_index
|
||||||
@ -963,7 +959,6 @@ components:
|
|||||||
properties:
|
properties:
|
||||||
src:
|
src:
|
||||||
type: string
|
type: string
|
||||||
default: "/dev/urandom"
|
|
||||||
iommu:
|
iommu:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
|
@ -75,7 +75,7 @@ assets:
|
|||||||
url: "https://github.com/cloud-hypervisor/cloud-hypervisor"
|
url: "https://github.com/cloud-hypervisor/cloud-hypervisor"
|
||||||
uscan-url: >-
|
uscan-url: >-
|
||||||
https://github.com/cloud-hypervisor/cloud-hypervisor/tags.*/v?(\d\S+)\.tar\.gz
|
https://github.com/cloud-hypervisor/cloud-hypervisor/tags.*/v?(\d\S+)\.tar\.gz
|
||||||
version: "v39.0"
|
version: "v40.0"
|
||||||
|
|
||||||
firecracker:
|
firecracker:
|
||||||
description: "Firecracker micro-VMM"
|
description: "Firecracker micro-VMM"
|
||||||
|
Loading…
Reference in New Issue
Block a user