Posts

Showing posts from June, 2025

Installation of ansible AWX tool with minikube cluster

Installation of ansible AWX tool * Installation of Docker on Ubuntu 24.04: This demonstration done on virtualbox with 6GB RAM and 8VCPUS # Add Docker's official GPG key: sudo apt-get update sudo apt-get install ca-certificates curl sudo install -m 0755 -d /etc/apt/keyrings sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc sudo chmod a+r /etc/apt/keyrings/docker.asc # Add the repository to Apt sources: echo \   "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \   $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | \  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null sudo apt-get update   sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin   sudo systemctl status docker sudo systemctl statt docker   sudo usermod -aG docke...

IT automation tool ansible awx

  Ansible AWX: Revolutionizing IT Automation – A Complete Guide Introduction In today's rapidly evolving IT landscape, automation is essential for efficient operations. Organizations seek ways to reduce manual tasks, minimize errors, and accelerate deployment. Ansible AWX is a powerful web-based user interface and REST API for Ansible that transforms how teams manage and execute automation workflows What is Ansible AWX? Ansible AWX is the open-source upstream project for Red Hat Ansible Tower. It provides a web-based interface, REST API, and task engine built on top of Ansible. AWX enables teams to centrally manage Ansible playbooks, inventories, and schedules, offering role-based access control, job scheduling, and integrated notifications. Think of AWX as the control center for your automation efforts, making Ansible accessible to both technical and non-technical team members . Key Features and Benefits Centralized Management:  Manage all automation activities from a single ...