Containerized Ansible Automation Platform 2024 Update — Video Tutorial
The containerized Red Hat Ansible Automation Platform preview has excited the tech community with its streamlined installation, enhanced security, and significant updates. Discover how these improvements simplify setup, strengthen security, and introduce automation mesh capabilities.
Watch Video
Watch "Containerized Ansible Automation Platform 2024 Update" on YouTube
What You'll Learn
- Introduction
- Further Installation Simplification
- Enhanced Security
- Port Changes
- Automation Mesh
- Event-Driven Ansible
- Networking and Content Seeding
- Ansible Automation Hub Enhancements
- Links
- Conclusion
Full Tutorial Content
Introduction
The recent Technology Preview of the containerized Red Hat Ansible Automation Platform has sparked considerable excitement within the tech community. This innovative approach offers a streamlined, feature-rich solution for enterprise-ready automation, gathering interest from both current users and prospects. The journey towards the general availability of this platform has been enriched with valuable feedback, leading to significant enhancements, fixes, and improvements. This article dives into these updates, highlighting how they contribute to a more simplified installation process, enhanced security measures, and other notable changes.
Further Installation Simplification
One of the major strides in improving the user experience with the containerized Ansible Automation Platform is the simplification of the installation process. By leveraging core features of the platform, the need for some command-line instructions has been eliminated, making the setup smoother. For instance, the `ansible.cfg` file now automatically sets up the collections path, default inventory file, and logs:
```plaintext
$ cat ansible.cfg
[defaults]
collections_path = ./collections
inventory = ./inventory
log_path = ./aap_install.log
```
This adjustment means users no longer have to manually specify a collections path or pass in the inventory when sticking to installation defaults, streamlining the initial setup process.
Enhanced Security
Security is paramount, and the latest update defaults to using Transport Layer Security (TLS) across all services, fortifying network security. Users have the flexibility to use their own certificates or rely on those generated by the installer, offering both customization and convenience.
Port Changes
To mitigate potential conflicts, default UI ports have undergone adjustments:
- **Automation controller**: Changed from 443 to 8443
- **Ansible automation hub**: Changed from 444 to 8444
- **Event-Driven Ansible controller**: Changed from 445 to 8445
These modifications help avoid clashes with existing applications and can be customized further during installation.
Automation Mesh
The introduction of automation mesh capabilities to containerized installations marks a significant upgrade. Users can now incorporate hop and remote execution nodes right from the installation phase, enhancing the platform's flexibility and scalability.
For example, to add a remote execution node, users can simply update their inventory file accordingly:
```plaintext
[execution_nodes]
execution.example.com
```
Event-Driven Ansible
Improvements extend to Event-Driven Ansible, with Decision Environments (DEs) being set up during installation, streamlining the integration of custom or supported DEs and associated credentials resources.
Networking and Content Seeding
Networking advancements include IPv6 support for the user interface, broadening accessibility. Moreover, the platform now embraces a configuration-as-code model for pre-s
About This Tutorial
- Author: Luca Berton
- Difficulty: Beginner
- Read time: 3 min
- Category: installation
Read the full written article: Containerized Ansible Automation Platform 2024 Update
Topics Covered
Related Video Tutorials
- A Preview of Ansible Journey in 2024 — Explore Ansible role in IT automation with insights into its core releases, community engagement, and upcoming events in 2024.
- Master Ansible Automation Platform: Simplify IT Management — Unlock the power of Ansible Automation Platform to automate IT tasks effortlessly. Learn its core features with a lighthearted guide that makes automation fun.
- Install Ansible Automation Controller on a Single Host with Internal DB — Learn how to install Red Hat Ansible Automation Platform on a single host with an internal database. Ideal for small automation workflows or developer scenarios.
- Install Ansible Automation Platform in Red Hat Ansible OpenShift Platform operator via Operator — How to install Red Hat Ansible Automation Platform (AAP) via Red Hat Ansible Automation Platform operator on Red Hat OpenShift Container Platform (OCP).
- What’s New in Red Hat Ansible Automation Platform 2.6 — Explore Red Hat Ansible Automation Platform 2.6, featuring the new automation dashboard, Lightspeed Intelligent Assistant, and self-service automation portal to enhance efficiency and scalability.
- Backup Ansible Automation Platform — How to backup the full Ansible Automation Platform, including the Automation Controller, Private Automation Hub, Event-Driven Controller, and database with a single command.