mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-10 12:22:36 +00:00
Merge pull request #1780 from likebreath/0429/clh_v15.0
versions: Upgrade to cloud-hypervisor v15.0
This commit is contained in:
commit
2e0221125a
@ -525,6 +525,15 @@ components:
|
|||||||
vhost_user: false
|
vhost_user: false
|
||||||
ip: 192.168.249.1
|
ip: 192.168.249.1
|
||||||
id: id
|
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
|
mac: mac
|
||||||
fd:
|
fd:
|
||||||
- 8
|
- 8
|
||||||
@ -538,6 +547,15 @@ components:
|
|||||||
vhost_user: false
|
vhost_user: false
|
||||||
ip: 192.168.249.1
|
ip: 192.168.249.1
|
||||||
id: id
|
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
|
mac: mac
|
||||||
fd:
|
fd:
|
||||||
- 8
|
- 8
|
||||||
@ -801,6 +819,15 @@ components:
|
|||||||
vhost_user: false
|
vhost_user: false
|
||||||
ip: 192.168.249.1
|
ip: 192.168.249.1
|
||||||
id: id
|
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
|
mac: mac
|
||||||
fd:
|
fd:
|
||||||
- 8
|
- 8
|
||||||
@ -814,6 +841,15 @@ components:
|
|||||||
vhost_user: false
|
vhost_user: false
|
||||||
ip: 192.168.249.1
|
ip: 192.168.249.1
|
||||||
id: id
|
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
|
mac: mac
|
||||||
fd:
|
fd:
|
||||||
- 8
|
- 8
|
||||||
@ -1172,6 +1208,15 @@ components:
|
|||||||
vhost_user: false
|
vhost_user: false
|
||||||
ip: 192.168.249.1
|
ip: 192.168.249.1
|
||||||
id: id
|
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
|
mac: mac
|
||||||
fd:
|
fd:
|
||||||
- 8
|
- 8
|
||||||
@ -1210,6 +1255,8 @@ components:
|
|||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
type: array
|
type: array
|
||||||
|
rate_limiter_config:
|
||||||
|
$ref: '#/components/schemas/RateLimiterConfig'
|
||||||
type: object
|
type: object
|
||||||
RngConfig:
|
RngConfig:
|
||||||
example:
|
example:
|
||||||
|
@ -15,6 +15,7 @@ Name | Type | Description | Notes
|
|||||||
**VhostSocket** | **string** | | [optional]
|
**VhostSocket** | **string** | | [optional]
|
||||||
**Id** | **string** | | [optional]
|
**Id** | **string** | | [optional]
|
||||||
**Fd** | **[]int32** | | [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)
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||||
|
|
||||||
|
@ -11,15 +11,16 @@ package openapi
|
|||||||
|
|
||||||
// NetConfig struct for NetConfig
|
// NetConfig struct for NetConfig
|
||||||
type NetConfig struct {
|
type NetConfig struct {
|
||||||
Tap string `json:"tap,omitempty"`
|
Tap string `json:"tap,omitempty"`
|
||||||
Ip string `json:"ip,omitempty"`
|
Ip string `json:"ip,omitempty"`
|
||||||
Mask string `json:"mask,omitempty"`
|
Mask string `json:"mask,omitempty"`
|
||||||
Mac string `json:"mac,omitempty"`
|
Mac string `json:"mac,omitempty"`
|
||||||
Iommu bool `json:"iommu,omitempty"`
|
Iommu bool `json:"iommu,omitempty"`
|
||||||
NumQueues int32 `json:"num_queues,omitempty"`
|
NumQueues int32 `json:"num_queues,omitempty"`
|
||||||
QueueSize int32 `json:"queue_size,omitempty"`
|
QueueSize int32 `json:"queue_size,omitempty"`
|
||||||
VhostUser bool `json:"vhost_user,omitempty"`
|
VhostUser bool `json:"vhost_user,omitempty"`
|
||||||
VhostSocket string `json:"vhost_socket,omitempty"`
|
VhostSocket string `json:"vhost_socket,omitempty"`
|
||||||
Id string `json:"id,omitempty"`
|
Id string `json:"id,omitempty"`
|
||||||
Fd []int32 `json:"fd,omitempty"`
|
Fd []int32 `json:"fd,omitempty"`
|
||||||
|
RateLimiterConfig RateLimiterConfig `json:"rate_limiter_config,omitempty"`
|
||||||
}
|
}
|
||||||
|
@ -719,6 +719,8 @@ components:
|
|||||||
items:
|
items:
|
||||||
type: integer
|
type: integer
|
||||||
format: int32
|
format: int32
|
||||||
|
rate_limiter_config:
|
||||||
|
$ref: '#/components/schemas/RateLimiterConfig'
|
||||||
|
|
||||||
RngConfig:
|
RngConfig:
|
||||||
required:
|
required:
|
||||||
|
@ -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: "v0.14.1"
|
version: "v15.0"
|
||||||
|
|
||||||
firecracker:
|
firecracker:
|
||||||
description: "Firecracker micro-VMM"
|
description: "Firecracker micro-VMM"
|
||||||
|
Loading…
Reference in New Issue
Block a user