Ansible Consultancy

We offer automation of Red Hat Enterprise Linux using Ansible.

What We Offer

  1. Upgrades of Ansible Servers - Out of place.
  2. Automation of Red Hat 8 tasks running on VMware.
  3. Automation of VMware tasks such as creation of servers.

Portfolio Highlights

  1. Red Hat Satellite Patch Automation
    • Developed playbooks to automate patching for over 200 RHEL 8 servers.
    • Reduced patch cycle time by 60% using scheduled Ansible jobs.
  2. VMware Guest Provisioning
    • Automated VM creation and configuration via Ansible & VMware modules.
    • Enabled self-service provisioning for the dev team.
  3. Custom Ansible Roles for Compliance
    • Wrote reusable roles to ensure CIS compliance on all Red Hat systems.
Sample Ansible Playbook
                    
# Example: Ensure httpd is installed and started
- name: Ensure Apache is installed and running
  hosts: webservers
  become: true
  tasks:
    - name: Install httpd
      yum:
        name: httpd
        state: present
    - name: Start httpd
      service:
        name: httpd
        state: started