Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(core, kubevirt): add patch for hotplug container-disk #564

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions crds/embedded/virtualmachineinstances.yaml
Original file line number Diff line number Diff line change
@@ -3076,6 +3076,8 @@ spec:
path:
description: Path defines the path to disk file in the container
type: string
hotpluggable:
type: boolean
required:
- image
type: object
31 changes: 31 additions & 0 deletions crds/embedded/virtualmachines.yaml
Original file line number Diff line number Diff line change
@@ -3868,6 +3868,8 @@ spec:
description: Path defines the path to disk file
in the container
type: string
hotpluggable:
type: boolean
required:
- image
type: object
@@ -4491,6 +4493,35 @@ spec:
description: VolumeSource represents the source of the volume
to map to the disk.
properties:
containerDisk:
type: object
description: |-
ContainerDisk references a docker image, embedding a qcow or raw disk.
More info: https://kubevirt.gitbooks.io/user-guide/registry-disk.html
properties:
image:
description: Image is the name of the image with
the embedded disk.
type: string
imagePullPolicy:
description: |-
Image pull policy.
One of Always, Never, IfNotPresent.
Defaults to Always if :latest tag is specified, or IfNotPresent otherwise.
Cannot be updated.
More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
type: string
imagePullSecret:
description: ImagePullSecret is the name of the
Docker registry secret required to pull the image.
The secret must already exist.
type: string
path:
description: Path defines the path to disk file
in the container
type: string
hotpluggable:
type: boolean
dataVolume:
description: |-
DataVolume represents the dynamic creation a PVC for this volume as well as
Loading