Automation, Ansible, AI
Learn about how Ansible is bringing AI tools to your Integrated Development Environment to make your automation coding experience simpler, smoother, and more efficient.
Join the DZone community and get the full member experience.
Join For FreeToday, we are living in the world of artificial intelligence (AI). With Generative AI, writing code has become simpler. Coding is not about linting, formatting, and debugging anymore.
In this article, you will learn about how Ansible is bringing AI tools to your Integrated Development Environment to make your automation coding experience simpler, smoother, and more efficient.
What is Ansible?
Simply put, Ansible built is a simple IT automation tool that helps you in provisioning infrastructure, install software, and supports application automation through advanced workflows.
Ansible automation can be used to automate daily tasks, improve security and compliance, patch systems, and share automation across your entire organization. Ansible allows you to automate z/OS applications and IT infrastructure as part of your enterprise automation strategy using a proven and consistent approach.
Ansible + AI
Ansible Lightspeed with IBM Watson Code Assistant, a new generative AI service for Ansible automation, was announced at Red Hat Summit and AnsibleFest 2023. Ansible Lightspeed with IBM Watson Code Assistant helps you to create Ansible code more efficiently. The tool that is available as a Visual Code Extension reads plain English entered by the developer, and then it interacts with IBM watsonx foundation models to generate code recommendations for automation tasks that are then used to create Ansible Playbooks.
How to Setup and Getting Started
- Install the Ansible VSCode extension by Red Hat
- Follow the instructions documented here to configure the extension to enable Ansible Lightspeed.
- Once successfully installed and configured, you should see a tab at the bottom, as shown in the image below
Write the Name of the Task To Generate Ansible
- Create a new Ansible playbook called ping.yml.
- Add a new Ansible task with a name in plain English, like "Test ping with a register" or "HTTP PUT request to create a new object"
- You should see an Ansible module recommendation. Hit Tab, and the code will be inserted. You can further build on the Ansible code that is generated.
For Ansible yaml code snippets, check my code repository — https://github.com/VidyasagarMSC/ansible-yaml-snippets
Sample Ping Ansible Code
---
name Ping test
hosts machines
gather_factsfalse
tasks
name Test ping
ansible.builtin.ping
register ping_result
name Print register information from the previous task
ansible.builtin.debug
var ping_result
HTTP PUT Ansible Task Generated Using Ansible Lightspeed
name HTTP PUT request with JSON object
ansible.builtin.uri
url"{{ url }}"
method PUT
body"{{ body }}"
headers
Accept application/json
Authorization Bearer token_permission
validate_certsfalse
register result
changed_whenfalse
becometrue
An open and free technical preview is available to the users. Check the announcement here.
What's Next
Explore Ansible Lightspeed, and if you have any queries, feel free to contact me on Twitter or LinkedIn. Don't forget to LIKE this post and star my Ansible yaml snippets repository on GitHub.
Opinions expressed by DZone contributors are their own.
Comments