mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-28 00:07:16 +00:00
runtime: clh: update cloud-hypervisor
Update cloud-hypervisor to commit 2706319. Fixes a limitation in OpenAPITools/openapi-generator tool, it's impossible to send go zero types, like false and 0 to cloud-hypervisor because `omitempty` is added if a field is not required. See cloud-hypervisor/cloud-hypervisor#1961 for more information Signed-off-by: Julio Montes <julio.montes@intel.com>
This commit is contained in:
parent
9bc6fe6c83
commit
65ae12710d
@ -1078,6 +1078,10 @@ components:
|
|||||||
id:
|
id:
|
||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
|
- cache_size
|
||||||
|
- dax
|
||||||
|
- num_queues
|
||||||
|
- queue_size
|
||||||
- socket
|
- socket
|
||||||
- tag
|
- tag
|
||||||
type: object
|
type: object
|
||||||
|
@ -6,10 +6,10 @@ Name | Type | Description | Notes
|
|||||||
------------ | ------------- | ------------- | -------------
|
------------ | ------------- | ------------- | -------------
|
||||||
**Tag** | **string** | |
|
**Tag** | **string** | |
|
||||||
**Socket** | **string** | |
|
**Socket** | **string** | |
|
||||||
**NumQueues** | **int32** | | [optional] [default to 1]
|
**NumQueues** | **int32** | | [default to 1]
|
||||||
**QueueSize** | **int32** | | [optional] [default to 1024]
|
**QueueSize** | **int32** | | [default to 1024]
|
||||||
**Dax** | **bool** | | [optional] [default to true]
|
**Dax** | **bool** | | [default to true]
|
||||||
**CacheSize** | **int64** | | [optional]
|
**CacheSize** | **int64** | |
|
||||||
**Id** | **string** | | [optional]
|
**Id** | **string** | | [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)
|
||||||
|
@ -12,9 +12,9 @@ package openapi
|
|||||||
type FsConfig struct {
|
type FsConfig struct {
|
||||||
Tag string `json:"tag"`
|
Tag string `json:"tag"`
|
||||||
Socket string `json:"socket"`
|
Socket string `json:"socket"`
|
||||||
NumQueues int32 `json:"num_queues,omitempty"`
|
NumQueues int32 `json:"num_queues"`
|
||||||
QueueSize int32 `json:"queue_size,omitempty"`
|
QueueSize int32 `json:"queue_size"`
|
||||||
Dax bool `json:"dax,omitempty"`
|
Dax bool `json:"dax"`
|
||||||
CacheSize int64 `json:"cache_size,omitempty"`
|
CacheSize int64 `json:"cache_size"`
|
||||||
Id string `json:"id,omitempty"`
|
Id string `json:"id,omitempty"`
|
||||||
}
|
}
|
||||||
|
@ -654,8 +654,12 @@ components:
|
|||||||
|
|
||||||
FsConfig:
|
FsConfig:
|
||||||
required:
|
required:
|
||||||
- tag
|
- cache_size
|
||||||
|
- dax
|
||||||
|
- num_queues
|
||||||
|
- queue_size
|
||||||
- socket
|
- socket
|
||||||
|
- tag
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
tag:
|
tag:
|
||||||
|
@ -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.11.0"
|
version: "270631922deee9bdea13635a104e111768446c7b"
|
||||||
|
|
||||||
firecracker:
|
firecracker:
|
||||||
description: "Firecracker micro-VMM"
|
description: "Firecracker micro-VMM"
|
||||||
|
Loading…
Reference in New Issue
Block a user