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

[windows]change the tools version for known issue in OS in-place upgrade #444

Merged
merged 2 commits into from
Mar 27, 2023
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
5 changes: 3 additions & 2 deletions windows/guest_os_inplace_upgrade/handle_known_issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
- name: "Known issue - PVSCSI and VMXNET3 drivers not compatible with Windows Server after upgrade"
ansible.builtin.debug:
msg:
- "PVSCSI and VMXNET3 drivers installed by VMWare Tools 12.0.5 and later in Windows Server 2019 are not compatible with Windows Server 2022 and later after upgrade."
- "PVSCSI and VMXNET3 drivers installed by VMware Tools (12.0.5 =< VMware Tools version < 12.2.0) in Windows Server 2019 are not compatible with Windows Server 2022 and later after upgrade."
- "Refer to KB: https://kb.vmware.com/s/article/89290."
- "Windows Server 2022 will load inbox PVSCSI and VMXNET3 drivers automatically when there is network connection during guest OS upgrading."
tags:
Expand All @@ -31,7 +31,7 @@
- name: "Known issue - workaround of PVSCSI and VMXNET3 drivers not compatible with guest OS after upgrade"
ansible.builtin.debug:
msg:
- "PVSCSI and VMXNET3 drivers installed by VMWare Tools 12.0.5 and later in Windows 10 are not compatible with Windows 11 and later after upgrade."
- "PVSCSI and VMXNET3 drivers installed by VMware Tools (12.0.5 =< VMware Tools version < 12.2.0) in Windows 10 are not compatible with Windows 11 and later after upgrade."
- "KB article: https://kb.vmware.com/s/article/89290."
- "The workaround is removing incompatible drivers then installing compatible drivers before OS upgrade."
tags:
Expand Down Expand Up @@ -70,4 +70,5 @@
when:
- vmtools_version is defined
- vmtools_version is version('12.0.5', '>=')
- vmtools_version is version('12.2.0', '<')
- (win_pvscsi_version is version('1.3.25.0', '>=')) or (win_vmxnet3_version is version('1.9.9.0', '>='))