Skip to content

Commit

Permalink
Fix a typo: inforamtion -> information
Browse files Browse the repository at this point in the history
Signed-off-by: Simone Tiraboschi <[email protected]>
  • Loading branch information
tiraboschi committed Jan 14, 2022
1 parent ad29567 commit 3b96f94
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions api/openapi-spec/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -14137,7 +14137,7 @@
}
},
"v1.MediatedDevicesConfiguration": {
"description": "MediatedDevicesConfiguration holds inforamtion about MDEV types to be defined, if available",
"description": "MediatedDevicesConfiguration holds information about MDEV types to be defined, if available",
"type": "object",
"properties": {
"mediatedDevicesTypes": {
Expand Down Expand Up @@ -14319,7 +14319,7 @@
}
},
"v1.NodeMediatedDeviceTypesConfig": {
"description": "NodeMediatedDeviceTypesConfig holds inforamtion about MDEV types to be defined in a specifc node that matches the NodeSelector field.",
"description": "NodeMediatedDeviceTypesConfig holds information about MDEV types to be defined in a specifc node that matches the NodeSelector field.",
"type": "object",
"required": [
"nodeSelector",
Expand Down Expand Up @@ -14424,7 +14424,7 @@
}
},
"v1.PermittedHostDevices": {
"description": "PermittedHostDevices holds inforamtion about devices allowed for passthrough",
"description": "PermittedHostDevices holds information about devices allowed for passthrough",
"type": "object",
"properties": {
"mediatedDevices": {
Expand Down
12 changes: 6 additions & 6 deletions manifests/generated/kv-resource.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ spec:
machineType:
type: string
mediatedDevicesConfiguration:
description: MediatedDevicesConfiguration holds inforamtion about
description: MediatedDevicesConfiguration holds information about
MDEV types to be defined, if available
properties:
mediatedDevicesTypes:
Expand All @@ -280,7 +280,7 @@ spec:
x-kubernetes-list-type: atomic
nodeMediatedDeviceTypes:
items:
description: NodeMediatedDeviceTypesConfig holds inforamtion
description: NodeMediatedDeviceTypesConfig holds information
about MDEV types to be defined in a specifc node that
matches the NodeSelector field.
properties:
Expand Down Expand Up @@ -360,7 +360,7 @@ spec:
ovmfPath:
type: string
permittedHostDevices:
description: PermittedHostDevices holds inforamtion about devices
description: PermittedHostDevices holds information about devices
allowed for passthrough
properties:
mediatedDevices:
Expand Down Expand Up @@ -2349,7 +2349,7 @@ spec:
machineType:
type: string
mediatedDevicesConfiguration:
description: MediatedDevicesConfiguration holds inforamtion about
description: MediatedDevicesConfiguration holds information about
MDEV types to be defined, if available
properties:
mediatedDevicesTypes:
Expand All @@ -2359,7 +2359,7 @@ spec:
x-kubernetes-list-type: atomic
nodeMediatedDeviceTypes:
items:
description: NodeMediatedDeviceTypesConfig holds inforamtion
description: NodeMediatedDeviceTypesConfig holds information
about MDEV types to be defined in a specifc node that
matches the NodeSelector field.
properties:
Expand Down Expand Up @@ -2439,7 +2439,7 @@ spec:
ovmfPath:
type: string
permittedHostDevices:
description: PermittedHostDevices holds inforamtion about devices
description: PermittedHostDevices holds information about devices
allowed for passthrough
properties:
mediatedDevices:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ var CRDsValidation map[string]string = map[string]string{
machineType:
type: string
mediatedDevicesConfiguration:
description: MediatedDevicesConfiguration holds inforamtion about MDEV
description: MediatedDevicesConfiguration holds information about MDEV
types to be defined, if available
properties:
mediatedDevicesTypes:
Expand All @@ -707,7 +707,7 @@ var CRDsValidation map[string]string = map[string]string{
x-kubernetes-list-type: atomic
nodeMediatedDeviceTypes:
items:
description: NodeMediatedDeviceTypesConfig holds inforamtion about
description: NodeMediatedDeviceTypesConfig holds information about
MDEV types to be defined in a specifc node that matches the
NodeSelector field.
properties:
Expand Down Expand Up @@ -787,7 +787,7 @@ var CRDsValidation map[string]string = map[string]string{
ovmfPath:
type: string
permittedHostDevices:
description: PermittedHostDevices holds inforamtion about devices allowed
description: PermittedHostDevices holds information about devices allowed
for passthrough
properties:
mediatedDevices:
Expand Down
6 changes: 3 additions & 3 deletions staging/src/kubevirt.io/api/core/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -2116,7 +2116,7 @@ type LogVerbosity struct {
NodeVerbosity map[string]uint `json:"nodeVerbosity,omitempty"`
}

// PermittedHostDevices holds inforamtion about devices allowed for passthrough
// PermittedHostDevices holds information about devices allowed for passthrough
type PermittedHostDevices struct {
// +listType=atomic
PciHostDevices []PciHostDevice `json:"pciHostDevices,omitempty"`
Expand Down Expand Up @@ -2146,7 +2146,7 @@ type MediatedHostDevice struct {
ExternalResourceProvider bool `json:"externalResourceProvider,omitempty"`
}

// MediatedDevicesConfiguration holds inforamtion about MDEV types to be defined, if available
// MediatedDevicesConfiguration holds information about MDEV types to be defined, if available
type MediatedDevicesConfiguration struct {
// +listType=atomic
MediatedDevicesTypes []string `json:"mediatedDevicesTypes,omitempty"`
Expand All @@ -2155,7 +2155,7 @@ type MediatedDevicesConfiguration struct {
NodeMediatedDeviceTypes []NodeMediatedDeviceTypesConfig `json:"nodeMediatedDeviceTypes,omitempty"`
}

// NodeMediatedDeviceTypesConfig holds inforamtion about MDEV types to be defined in a specifc node that matches the NodeSelector field.
// NodeMediatedDeviceTypesConfig holds information about MDEV types to be defined in a specifc node that matches the NodeSelector field.
// +k8s:openapi-gen=true
type NodeMediatedDeviceTypesConfig struct {
// NodeSelector is a selector which must be true for the vmi to fit on a node.
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions staging/src/kubevirt.io/client-go/api/openapi_generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3b96f94

Please sign in to comment.