Deploying Multi-VM Applications on AHV with Ansible

Introduction Many enterprise applications require multiple virtual machines, web frontends, app layers, and databases. With Ansible and Nutanix AHV, you can define entire application stacks in YAML and deploy them with a single command. This playbook demonstrates how to deploy and configure multiple VMs in a repeatable fashion. My Personal Repository on GitHub Nutanix Repository … Read more

Managing VM Power State with Ansible

Introduction Whether you’re scheduling routine maintenance, automating DR procedures, or managing lab environments, the ability to control VM power state is essential. With Ansible, you can automate VM power operations, start, stop, reboot, and validate, all from a single playbook. My Personal Repository on GitHub Nutanix Repository on GitHub Diagram: VM Power Workflow Use Case … Read more

Nutanix Cluster Expansion with CLI and Bash

Introduction As workloads grow, Nutanix clusters must scale to meet demand. While Prism simplifies node addition, using ncli and Bash provides automation for site builds, disaster recovery scenarios, and DevOps pipelines. This guide outlines how to script and repeatably expand your Nutanix cluster using CLI tools. My Personal Repository on GitHub Nutanix Repository on GitHub … Read more

Deploying Nutanix AHV VMs with Ansible

Introduction Once your Ansible control node is configured, deploying a virtual machine on Nutanix AHV is just a few lines of YAML away. This article walks through an enterprise-ready playbook to launch AHV VMs using the Nutanix Ansible collection. We’ll cover options for CPU, memory, networks, and storage, and how to make the playbook reusable. … Read more

Deploying AHV Networks using Bash and acli

Introduction Proper network segmentation is essential for organizing workloads and securing traffic in Nutanix AHV. With acli and Bash, you can define and deploy VLAN-backed networks at scale, ensuring consistency across environments. This guide automates the creation of virtual networks using a repeatable, script-driven approach. My Personal Repository on GitHub Nutanix Repository on GitHub Diagram: … Read more

Batch Power Control of Nutanix VMs via CLI

Introduction Powering on or shutting down multiple VMs through the Prism interface can be tedious. With Bash and Nutanix’s acli, you can automate batch VM power operations, whether for scheduled maintenance, environment resets, or DR runbooks. This article shows how to control power states for multiple VMs based on name patterns, tags, or input lists. … Read more