Skip to main content
Redhat Developers  Logo
  • Products

    Featured

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat OpenShift AI
      Red Hat OpenShift AI
    • Red Hat Enterprise Linux AI
      Linux icon inside of a brain
    • Image mode for Red Hat Enterprise Linux
      RHEL image mode
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • Red Hat Developer Hub
      Developer Hub
    • View All Red Hat Products
    • Linux

      • Red Hat Enterprise Linux
      • Image mode for Red Hat Enterprise Linux
      • Red Hat Universal Base Images (UBI)
    • Java runtimes & frameworks

      • JBoss Enterprise Application Platform
      • Red Hat build of OpenJDK
    • Kubernetes

      • Red Hat OpenShift
      • Microsoft Azure Red Hat OpenShift
      • Red Hat OpenShift Virtualization
      • Red Hat OpenShift Lightspeed
    • Integration & App Connectivity

      • Red Hat Build of Apache Camel
      • Red Hat Service Interconnect
      • Red Hat Connectivity Link
    • AI/ML

      • Red Hat OpenShift AI
      • Red Hat Enterprise Linux AI
    • Automation

      • Red Hat Ansible Automation Platform
      • Red Hat Ansible Lightspeed
    • Developer tools

      • Red Hat Trusted Software Supply Chain
      • Podman Desktop
      • Red Hat OpenShift Dev Spaces
    • Developer Sandbox

      Developer Sandbox
      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Secure Development & Architectures

      • Security
      • Secure coding
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
      • View All Technologies
    • Start exploring in the Developer Sandbox for free

      sandbox graphic
      Try Red Hat's products and technologies without setup or configuration.
    • Try at no cost
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • Java
      Java icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • API Catalog
    • Product Documentation
    • Legacy Documentation
    • Red Hat Learning

      Learning image
      Boost your technical skills to expert-level with the help of interactive lessons offered by various Red Hat Learning programs.
    • Explore Red Hat Learning
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

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

Share:

    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

    • Why Models-as-a-Service architecture is ideal for AI models

    • How to run MicroShift as a container using MINC

    • OpenShift 4.19 brings a unified console for developers and admins

    • 3 steps to secure network segmentation with Ansible and AWS

    • Integrate vLLM inference on macOS/iOS using OpenAI APIs

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Products

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform

    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

    Red Hat legal and privacy links

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

    Report a website issue