mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-12 05:12:37 +00:00
clh: Update CLH to stable/v0.5.x
Use CLH branch stable/v0.5.x, and also re-generate the openAPI client code with the new 'cloud-hypervisor.yaml'. Fixes: #2488 Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
parent
feac6648fa
commit
de8fe25dd5
@ -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.5.0"
|
version: "stable/v0.5.x"
|
||||||
|
|
||||||
firecracker:
|
firecracker:
|
||||||
description: "Firecracker micro-VMM"
|
description: "Firecracker micro-VMM"
|
||||||
|
@ -1 +1 @@
|
|||||||
4.2.3-SNAPSHOT
|
4.3.0-SNAPSHOT
|
@ -156,12 +156,20 @@ components:
|
|||||||
disks:
|
disks:
|
||||||
- path: path
|
- path: path
|
||||||
num_queues: 5
|
num_queues: 5
|
||||||
|
readonly: false
|
||||||
iommu: false
|
iommu: false
|
||||||
queue_size: 5
|
queue_size: 5
|
||||||
|
vhost_socket: vhost_socket
|
||||||
|
vhost_user: false
|
||||||
|
wce: true
|
||||||
- path: path
|
- path: path
|
||||||
num_queues: 5
|
num_queues: 5
|
||||||
|
readonly: false
|
||||||
iommu: false
|
iommu: false
|
||||||
queue_size: 5
|
queue_size: 5
|
||||||
|
vhost_socket: vhost_socket
|
||||||
|
vhost_user: false
|
||||||
|
wce: true
|
||||||
cpus:
|
cpus:
|
||||||
boot_vcpus: 1
|
boot_vcpus: 1
|
||||||
max_vcpus: 1
|
max_vcpus: 1
|
||||||
@ -275,12 +283,20 @@ components:
|
|||||||
disks:
|
disks:
|
||||||
- path: path
|
- path: path
|
||||||
num_queues: 5
|
num_queues: 5
|
||||||
|
readonly: false
|
||||||
iommu: false
|
iommu: false
|
||||||
queue_size: 5
|
queue_size: 5
|
||||||
|
vhost_socket: vhost_socket
|
||||||
|
vhost_user: false
|
||||||
|
wce: true
|
||||||
- path: path
|
- path: path
|
||||||
num_queues: 5
|
num_queues: 5
|
||||||
|
readonly: false
|
||||||
iommu: false
|
iommu: false
|
||||||
queue_size: 5
|
queue_size: 5
|
||||||
|
vhost_socket: vhost_socket
|
||||||
|
vhost_user: false
|
||||||
|
wce: true
|
||||||
cpus:
|
cpus:
|
||||||
boot_vcpus: 1
|
boot_vcpus: 1
|
||||||
max_vcpus: 1
|
max_vcpus: 1
|
||||||
@ -477,11 +493,18 @@ components:
|
|||||||
example:
|
example:
|
||||||
path: path
|
path: path
|
||||||
num_queues: 5
|
num_queues: 5
|
||||||
|
readonly: false
|
||||||
iommu: false
|
iommu: false
|
||||||
queue_size: 5
|
queue_size: 5
|
||||||
|
vhost_socket: vhost_socket
|
||||||
|
vhost_user: false
|
||||||
|
wce: true
|
||||||
properties:
|
properties:
|
||||||
path:
|
path:
|
||||||
type: string
|
type: string
|
||||||
|
readonly:
|
||||||
|
default: false
|
||||||
|
type: boolean
|
||||||
iommu:
|
iommu:
|
||||||
default: false
|
default: false
|
||||||
type: boolean
|
type: boolean
|
||||||
@ -491,6 +514,14 @@ components:
|
|||||||
queue_size:
|
queue_size:
|
||||||
default: 128
|
default: 128
|
||||||
type: integer
|
type: integer
|
||||||
|
vhost_user:
|
||||||
|
default: false
|
||||||
|
type: boolean
|
||||||
|
vhost_socket:
|
||||||
|
type: string
|
||||||
|
wce:
|
||||||
|
default: true
|
||||||
|
type: boolean
|
||||||
required:
|
required:
|
||||||
- path
|
- path
|
||||||
type: object
|
type: object
|
||||||
|
@ -5,9 +5,13 @@
|
|||||||
Name | Type | Description | Notes
|
Name | Type | Description | Notes
|
||||||
------------ | ------------- | ------------- | -------------
|
------------ | ------------- | ------------- | -------------
|
||||||
**Path** | **string** | |
|
**Path** | **string** | |
|
||||||
|
**Readonly** | **bool** | | [optional] [default to false]
|
||||||
**Iommu** | **bool** | | [optional] [default to false]
|
**Iommu** | **bool** | | [optional] [default to false]
|
||||||
**NumQueues** | **int32** | | [optional] [default to 1]
|
**NumQueues** | **int32** | | [optional] [default to 1]
|
||||||
**QueueSize** | **int32** | | [optional] [default to 128]
|
**QueueSize** | **int32** | | [optional] [default to 128]
|
||||||
|
**VhostUser** | **bool** | | [optional] [default to false]
|
||||||
|
**VhostSocket** | **string** | | [optional]
|
||||||
|
**Wce** | **bool** | | [optional] [default to true]
|
||||||
|
|
||||||
[[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,7 +11,11 @@ package openapi
|
|||||||
// DiskConfig struct for DiskConfig
|
// DiskConfig struct for DiskConfig
|
||||||
type DiskConfig struct {
|
type DiskConfig struct {
|
||||||
Path string `json:"path"`
|
Path string `json:"path"`
|
||||||
|
Readonly bool `json:"readonly,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"`
|
||||||
|
VhostSocket string `json:"vhost_socket,omitempty"`
|
||||||
|
Wce bool `json:"wce,omitempty"`
|
||||||
}
|
}
|
||||||
|
@ -274,6 +274,9 @@ components:
|
|||||||
properties:
|
properties:
|
||||||
path:
|
path:
|
||||||
type: string
|
type: string
|
||||||
|
readonly:
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
iommu:
|
iommu:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
@ -283,6 +286,14 @@ components:
|
|||||||
queue_size:
|
queue_size:
|
||||||
type: integer
|
type: integer
|
||||||
default: 128
|
default: 128
|
||||||
|
vhost_user:
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
vhost_socket:
|
||||||
|
type: string
|
||||||
|
wce:
|
||||||
|
type: boolean
|
||||||
|
default: true
|
||||||
|
|
||||||
NetConfig:
|
NetConfig:
|
||||||
type: object
|
type: object
|
||||||
|
Loading…
Reference in New Issue
Block a user