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

chore: Update virtio image version to v1.2.0 #919

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Show file tree
Hide file tree
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: 1 addition & 1 deletion data/tekton-pipelines/windows-bios-installer-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
- name: virtioContainerDiskName
description: Reference to the containerdisk containing the virtio-win drivers ISO.
type: string
default: quay.io/kubevirt/virtio-container-disk:v1.1.1
default: quay.io/kubevirt/virtio-container-disk:v1.2.0
- name: installCDRomName
description: Name of datavolume which contains iso file.
type: string
Expand Down
2 changes: 1 addition & 1 deletion data/tekton-pipelines/windows-efi-installer-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
description: Name of the ConfigMap containing the sysprep configuration files (autounattend.xml, etc.). For example windows11-autounattend or windows2022-autounattend. It is possible to provide customize ConfigMaps created by the user too.
name: autounattendConfigMapName
type: string
- default: quay.io/kubevirt/virtio-container-disk:v1.1.1
- default: quay.io/kubevirt/virtio-container-disk:v1.2.0
description: Reference to the containerdisk containing the virtio-win drivers ISO.
name: virtioContainerDiskName
type: string
Expand Down
2 changes: 1 addition & 1 deletion internal/common/environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const (

DefaultTektonTasksIMG = "quay.io/kubevirt/tekton-tasks:" + TektonTasksVersion
DeafultTektonTasksDiskVirtIMG = "quay.io/kubevirt/tekton-tasks-disk-virt:" + TektonTasksVersion
DefaultVirtioIMG = "quay.io/kubevirt/virtio-container-disk:v1.1.1"
DefaultVirtioIMG = "quay.io/kubevirt/virtio-container-disk:v1.2.0"

defaultOperatorVersion = "devel"
)
Expand Down