PE-9173: install open-vm-tools in Ubuntu 22.04 FIPS base image - #789
Merged
Merged
Conversation
…E-9173) kairos-init installs the VMware guest agent (open-vm-tools) for the SUSE family but not for Debian/Ubuntu. Without vmtoolsd, vSphere reports blank IP Addresses / DNS Name for the guest. PR #682 fixed this on the non-FIPS core path (kairosify Dockerfile) and the 20.04 / 24.04 FIPS Dockerfiles already carry open-vm-tools, but the 22.04 FIPS Dockerfile was missed — so ubuntu22-fips alone still shows blank IP/DNS in vCenter. Add open-vm-tools to the 22.04 FIPS apt install list, matching the 24.04 sibling. It is not a cryptographic module, so it has no FIPS impact.
santhoshdaivajna
approved these changes
Aug 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
open-vm-toolsto the Ubuntu 22.04 FIPS base image so vSphere / vCenter can report the guest IP Addresses and DNS Name.kairos-initinstalls the VMware guest agent for the SUSE family but not for Debian/Ubuntu. Withoutvmtoolsdrunning, vCenter shows blank IP/DNS andVMware Tools: Not running, not installed.Why 22.04 FIPS specifically
open-vm-toolsin the kairosify Dockerfile.open-vm-toolsin their apt install lists.Change
Add
open-vm-toolsto the PRO-attached apt install list inubuntu-fips/22.04/Dockerfile.ubuntu22.04-fips, positioned exactly as in the 24.04 sibling (shim-signed open-vm-tools cracklib-runtime).open-vm-toolsis not a cryptographic module, so it has no FIPS impact. The package ships its ownopen-vm-tools.serviceunit (gated on VMware virtualization), so it is inert on bare-metal / KVM.Test plan
systemctl status open-vm-tools→ active;dpkg -l open-vm-tools→ installedRefs: PE-9173, PE-8787