mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-29 20:24:31 +00:00
versions: Upgrade to cloud-hypervisor v15.0
Quotes from the cloud-hypervisor release v15.0: This release is the first in a new version numbering scheme to represent that we believe Cloud Hypervisor is maturing and entering a period of stability. With this new release we are beginning our new stability guarantees. Other highlights from the latest release include: 1) Network device rate limiting; 2) Support for runtime control of `virtio-net` guest offload; 3) `--api-socket` supports file descriptor parameter; 4) Bug fixes on `virtio-pmem`, PCI BARs alignment, `virtio-net`, etc.; 5) Deprecation of the "LinuxBoot" protocol for ELF and bzImage in the coming release. Details can be found: https://github.com/cloud-hypervisor/cloud-hypervisor/releases/tag/v15.0 Note: The client code of cloud-hypervisor's OpenAPI is automatically generated by `openapi-generator` [1-2]. As the API changes do not impact usages in Kata, no additional changes in kata's runtime are needed to work with the current version of cloud-hypervisor. [1] https://github.com/OpenAPITools/openapi-generator [2] https://github.com/kata-containers/kata-containers/blob/main/src/runtime/virtcontainers/pkg/cloud-hypervisor/README.md Fixes: #1779 Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
parent
b20dff8027
commit
1ca6bedf3e
@ -525,6 +525,15 @@ components:
|
||||
vhost_user: false
|
||||
ip: 192.168.249.1
|
||||
id: id
|
||||
rate_limiter_config:
|
||||
ops:
|
||||
size: 0
|
||||
one_time_burst: 0
|
||||
refill_time: 0
|
||||
bandwidth:
|
||||
size: 0
|
||||
one_time_burst: 0
|
||||
refill_time: 0
|
||||
mac: mac
|
||||
fd:
|
||||
- 8
|
||||
@ -538,6 +547,15 @@ components:
|
||||
vhost_user: false
|
||||
ip: 192.168.249.1
|
||||
id: id
|
||||
rate_limiter_config:
|
||||
ops:
|
||||
size: 0
|
||||
one_time_burst: 0
|
||||
refill_time: 0
|
||||
bandwidth:
|
||||
size: 0
|
||||
one_time_burst: 0
|
||||
refill_time: 0
|
||||
mac: mac
|
||||
fd:
|
||||
- 8
|
||||
@ -801,6 +819,15 @@ components:
|
||||
vhost_user: false
|
||||
ip: 192.168.249.1
|
||||
id: id
|
||||
rate_limiter_config:
|
||||
ops:
|
||||
size: 0
|
||||
one_time_burst: 0
|
||||
refill_time: 0
|
||||
bandwidth:
|
||||
size: 0
|
||||
one_time_burst: 0
|
||||
refill_time: 0
|
||||
mac: mac
|
||||
fd:
|
||||
- 8
|
||||
@ -814,6 +841,15 @@ components:
|
||||
vhost_user: false
|
||||
ip: 192.168.249.1
|
||||
id: id
|
||||
rate_limiter_config:
|
||||
ops:
|
||||
size: 0
|
||||
one_time_burst: 0
|
||||
refill_time: 0
|
||||
bandwidth:
|
||||
size: 0
|
||||
one_time_burst: 0
|
||||
refill_time: 0
|
||||
mac: mac
|
||||
fd:
|
||||
- 8
|
||||
@ -1172,6 +1208,15 @@ components:
|
||||
vhost_user: false
|
||||
ip: 192.168.249.1
|
||||
id: id
|
||||
rate_limiter_config:
|
||||
ops:
|
||||
size: 0
|
||||
one_time_burst: 0
|
||||
refill_time: 0
|
||||
bandwidth:
|
||||
size: 0
|
||||
one_time_burst: 0
|
||||
refill_time: 0
|
||||
mac: mac
|
||||
fd:
|
||||
- 8
|
||||
@ -1210,6 +1255,8 @@ components:
|
||||
format: int32
|
||||
type: integer
|
||||
type: array
|
||||
rate_limiter_config:
|
||||
$ref: '#/components/schemas/RateLimiterConfig'
|
||||
type: object
|
||||
RngConfig:
|
||||
example:
|
||||
|
@ -15,6 +15,7 @@ Name | Type | Description | Notes
|
||||
**VhostSocket** | **string** | | [optional]
|
||||
**Id** | **string** | | [optional]
|
||||
**Fd** | **[]int32** | | [optional]
|
||||
**RateLimiterConfig** | [**RateLimiterConfig**](RateLimiterConfig.md) | | [optional]
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
||||
|
@ -22,4 +22,5 @@ type NetConfig struct {
|
||||
VhostSocket string `json:"vhost_socket,omitempty"`
|
||||
Id string `json:"id,omitempty"`
|
||||
Fd []int32 `json:"fd,omitempty"`
|
||||
RateLimiterConfig RateLimiterConfig `json:"rate_limiter_config,omitempty"`
|
||||
}
|
||||
|
@ -719,6 +719,8 @@ components:
|
||||
items:
|
||||
type: integer
|
||||
format: int32
|
||||
rate_limiter_config:
|
||||
$ref: '#/components/schemas/RateLimiterConfig'
|
||||
|
||||
RngConfig:
|
||||
required:
|
||||
|
@ -75,7 +75,7 @@ assets:
|
||||
url: "https://github.com/cloud-hypervisor/cloud-hypervisor"
|
||||
uscan-url: >-
|
||||
https://github.com/cloud-hypervisor/cloud-hypervisor/tags.*/v?(\d\S+)\.tar\.gz
|
||||
version: "v0.14.1"
|
||||
version: "v15.0"
|
||||
|
||||
firecracker:
|
||||
description: "Firecracker micro-VMM"
|
||||
|
Loading…
Reference in New Issue
Block a user