Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Containerizing open-vm-tools - Part 1: The Dockerfile and constructing a systemd unit file

March 23, 2017
davis phillips
Related topics:
LinuxKubernetesContainersDeveloper toolsDevOps
Related products:
Red Hat Enterprise LinuxRed Hat OpenShift Container Platform

    While validating OpenShift Container Platform on a VMware platform the usage of Atomic OS was also a requirement. In the initial reference architecture, the decision was made to use Red Hat Enterprise Linux as the platform. This platform was then customized and the same packages as in Atomic were installed via Ansible and Red Hat Network.

    The github repo with those playbooks is here:

    https://github.com/openshift/openshift-ansible-contrib/tree/master/reference-architecture/vmware-ansible.

    These playbooks will guide you from start to finish to deploying OCP on VMware vCenter utilizing RHEL 7.

    The next step in the VMware platform was to prepare a Dockerfile that would suffice in providing the privileges required for VMware’s open-vm-tools to a container running on the Atomic OS platform.  As per VMware’s github site for open-vm-tools the package provides the following functionality:

    • The ability to perform virtual machine power operations gracefully.
    • Execution of VMware provided or user configured scripts in guests during various power operations.
    • The ability to run programs, commands, and file system operation in guests to enhance guest automation.
    • Authentication for guest operations.
    • Periodic collection of network, disk, and memory usage information from the guest.
    • Generation of a heartbeat from guests to hosts so VMware's HA solution can determine guests' availability.
    • Clock synchronization between guests and hosts or client desktops.
    • Quiescing guest file systems to allow hosts to capture file-system-consistent guest snapshots.
    • Execution of pre-freeze and post-thaw scripts while quiescing guest file systems.
    • The ability to customize guest operating systems immediately after powering on virtual machines.
    • Enabling shared folders between host and guest file systems on VMware Workstation and VMware Fusion.
    • Copying and pasting text, graphics, and files between guests and hosts or client desktops.

    Here is the Dockerfile:

    FROM registry.access.redhat.com/rhel7.3
    
    ENV SYSTEMD_IGNORE_CHROOT=1
    
    RUN yum -y --disablerepo=\* --enablerepo=rhel-7-server-rpms install yum-utils && \
      yum-config-manager --disable \* && \
      yum-config-manager --enable rhel-7-server-rpms && \
      yum clean all
    
    RUN yum -y install file open-vm-tools perl open-vm-tools-deploypkg net-tools iproute systemd util-linux && \
    yum clean all
    
    LABEL Version=1.0
    LABEL Vendor="Red Hat" License=GPLv3
    
    LABEL RUN="docker run  --privileged -v /proc/:/hostproc/ -v /sys/fs/cgroup:/sys/fs/cgroup  -v /var/log:/var/log -v /run/systemd:/run/systemd -v /sysroot:/sysroot -v=/var/lib/sss/pipes/:/var/lib/sss/pipes/:rw -v /etc/passwd:/etc/passwd -v /etc/shadow:/etc/shadow -v /tmp:/tmp:rw -v /etc/sysconfig:/etc/sysconfig:rw -v /etc/resolv.conf:/etc/resolv.conf:rw -v /etc/nsswitch.conf:/etc/nsswitch.conf:rw -v /etc/hosts:/etc/hosts:rw -v /etc/hostname:/etc/hostname:rw -v /etc/localtime:/etc/localtime:rw -v /etc/adjtime:/etc/adjtime --env container=docker --net=host  --pid=host IMAGE"
    
    ADD service.template config.json /exports/
    
    CMD /usr/bin/vmtoolsd

    The yum install covers the packages required for both guest customization and for manipulation of the virtual machine via the container layer. The systemd package, for instance, is required to allow a reboot. The environment variable, SYSTEMD_IGNORE_CHROOT allows the container to skip the chroot check for a reboot. The customization initiates a reboot after the filesystem files are modified:

    • /tmp - open-vm-tools extracts its perl customization scripts here.
    • /etc/sysconfig/ - This is where all of the network customization files are stored including network, network-scripts, etc.
    • /etc/resolv.conf - DNS configuration for the VM.
    • /etc/nsswitch.conf - The name server switch file allows for authentication against sssd, ldap, etc.
    • /etc/hosts - local name resolution.
    • /etc/hostname - hostname configuration for RHEL 7.
    • /etc/adjtime - Time configuration for systemd.
    • /etc/shadow and /etc/password - This allows open-vm-tools to authenticate as a local user on the running virtual machine.
    • /var/lib/sss/pipes - This is for SSSD configurations.
    • /var/log/ - Logging for guest customizations and other VMware debugging.

    One of the missing files here is /etc/localtime. This particular file does not work with a bind mount as the link is flattened after the mount. This customization is accomplished via mounting the entire / filesystem into /host. Then the customization that sets time will require a small modification:

    On the vCenter server: /usr/lib/vmware-vpx/imgcust/linux/imgcust-scripts/RedHatCustomization.pm

    line number 542

    if(defined $ENV{'SYSTEMD_IGNORE_CHROOT'})
       {
         Utils::ExecuteCommand("ln -sf /usr/share/zoneinfo/$tz /host/etc/localtime");
       }
       else
       {
         Utils::ExecuteCommand("ln -sf /usr/share/zoneinfo/$tz /etc/localtime");
       }

    There is an existing bugzilla for an update to VMware’s vCenter moving forward.

    Once, the Dockerfile image has been built:

    docker built —rm -t openvmtools

    The container can be set to start automatically by adding a systemd unit file. The following file is modified from the system unit file installed with the open-vm-tools RPM.

    vi /etc/systemd/system/vmtoolsd
    [Unit]
    Description=Service for virtual machines hosted on VMware
    Documentation=http://github.com/vmware/open-vm-tools
    ConditionVirtualization=vmware
    Requires=docker.service
    After=docker.service
    
    [Service]
    #ExecStart=/usr/bin/vmtoolsd
    ExecStart=/usr/bin/docker run  --privileged -v /:/host -v /proc/:/hostproc/ -v /sys/fs/cgroup:/sys/fs/cgroup  -v /var/log:/var/log -v /run/systemd:/run/systemd -v /sysroot:/sysroot -v=/var/lib/sss/pipes/:/var/lib/sss/pipes/ -v /etc/passwd:/etc/passwd -v /etc/shadow:/etc/shadow -v /tmp:/tmp -v /etc/sysconfig:/etc/sysconfig -v /etc/resolv.conf:/etc/resolv.conf -v /etc/nsswitch.conf:/etc/nsswitch.conf -v /etc/hosts:/etc/hosts -v /etc/hostname:/etc/hostname -v /etc/adjtime:/etc/adjtime --env container=docker --net=host --pid=host  openvmtools
    ExecStop=/usr/bin/docker stop -t openvmtools
    TimeoutStopSec=5
    PrivateTmp=true
    
    [Install]
    WantedBy=multi-user.target

    Now by enabling the systemd service, you should be able to utilize open-vm-tools via a container in atomic.

    systemctl enable vmtoolsd
    systemctl start vmtoolsd

    This concludes the first part of the containerizing open-vm-tools guide. In the next article, the requirements for utilizing this image as a runc system container will be discussed.


    Red Hat Container Development Kit provides a pre-built Container Development Environment based on Red Hat Enterprise Linux to help you develop container-based (sometimes called Docker) applications quickly.

    Last updated: March 22, 2017

    Recent Posts

    • Debugging image mode with Red Hat OpenShift 4.20: A practical guide

    • EvalHub: Because "looks good to me" isn't a benchmark

    • SQL Server HA on RHEL: Meet Pacemaker HA Agent v2 (tech preview)

    • Deploy with confidence: Continuous integration and continuous delivery for agentic AI

    • Every layer counts: Defense in depth for AI agents with Red Hat AI

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.