what s new with ansible collections
play

Whats New With Ansible Collections Diving into the How to use - PowerPoint PPT Presentation

INSERT CONFIDENTIAL designator Whats New With Ansible Collections Diving into the How to use Collections with Ansible 2.9.10+ and beyond Andrius Benokraitis Iftikhar Khan Bradley Thornton Sr. Principal Product Manager Sr. Manager,


  1. INSERT CONFIDENTIAL designator What’s New With Ansible Collections Diving into the “How” to use Collections with Ansible 2.9.10+ and beyond Andrius Benokraitis Iftikhar Khan Bradley Thornton Sr. Principal Product Manager Sr. Manager, Engineering Chief Architect, Engineering 1

  2. INSERT CONFIDENTIAL designator What’s New with Ansible Collections What we hope you get from this 1. Use Ansible 2.9.10+ with Collections 2. Use fully qualified collection names in playbooks and roles 3. Migrate standalone roles into Collections 2

  3. INSERT CONFIDENTIAL designator The Red Hat Ansible Automation Platform Ansible Cloud Services Ansible Automation Ansible Tower API Receptor Automation Hub Ansible Analytics and Tower UI (Project-receptor) (Galaxy) (AWX) Ansible Engine Runner Catalog ... (Ansible) (Ansible-runner) Ansible Content Collections Network Security Cloud Windows Linux Ansible Content Experience Molecule Ansible-lint Ansible-test IDE Integration

  4. INSERT CONFIDENTIAL designator Introducing the Ansible Collection Simplified and consistent content schema A standardized way to organize and ● package Ansible content (roles, modules, module utilities, plugins, documentation) Semantic versioning ● Portable and flexible delivery ● 4

  5. INSERT CONFIDENTIAL designator Before Collections Bug/Feature for module Now available 4-6 months Ansible 2.5 Ansible 2.6 Bug/Improvement for module introduced proposed & merged 5

  6. INSERT CONFIDENTIAL designator After Collections Ansible 2.9 Ansible 2.10 Bug/Improvement for module introduced Content can be supported and installed immediately! 6

  7. INSERT CONFIDENTIAL designator Automation and IT modernization What went where? github.com/ansible/ansible Ansible 2.9 github.com/ansible/ansible Ansible Base 2.10 Ansible 2.10 github.com/ansible-collections/* Ansible Galaxy Ansible Automation Hub github.com/{vendor}/* 7

  8. INSERT CONFIDENTIAL designator Distribution of Collections Ansible Galaxy Ansible Automation Hub galaxy.ansible.com cloud.redhat.com Community supported Certified, jointly supported by ● ● Extended to leverage Red Hat and Partner ● Collections framework Access to advanced analytics ● “Latest and greatest” “Slow and steady” ● ● 8

  9. INSERT CONFIDENTIAL designator Ansible automates technologies you use Time to automate is measured in minutes, 50+ certified platforms Cloud Virt & Container Windows Network Security Monitoring AWS Docker ACLs Arista Checkpoint Dynatrace Azure Kubernetes Files Aruba Cisco Datadog Digital Ocean OpenStack Packages Bigswitch CyberArk LogicMonitor Google OpenShift IIS Cisco F5 New Relic OpenStack VMware Registry Ericsson Fortinet Sensu Rackspace +more Shares F5 Juniper +more +more Services FRR IBM Configs Juniper Palo Alto Devops Red Hat Storage Users Meraki Snort Jira Products Infinidat Domains OpenvSwitch +more GitHub RHEL Netapp Updates Ruckus Vagrant Satellite Pure Storage +more VyOS Jenkins Insights +more +more Slack +more +more

  10. INSERT CONFIDENTIAL designator Collection What you need to know Architecture about using Collections 10

  11. INSERT CONFIDENTIAL designator Collection Directory Structure docs /: local documentation for the collection ● galaxy . yml : source data for the MANIFEST.json that will be part of the collection package ● playbooks /: playbook snippets ● tasks /: holds 'task list files' for include_tasks/import_tasks usage ○ plugins /: all ansible plugins and modules go here, each in its own subdir ● modules /: ansible modules ○ lookup /: lookup plugins ○ filter /: Jinja2 filter plugins ○ connection /: connection plugins required if not using default ○ roles /: directory for ansible roles ● tests /: tests for the collection's content ● meta /: metadata files including runtime.yml ● 11

  12. INSERT CONFIDENTIAL designator Introducing meta/runtime.yml AKA “tombstoning” or “collection routing” Supports collection runtime metadata: Plugin (action, modules) routing, redirection, removal, and deprecation for collections ● new /meta directory that contains runtime.yml ● Identifies supported Ansible versions ● Slated for release in Ansible Base 2.10 ● See: https:/ /github.com/ansible/ansible/pull/67684 for more info 12

  13. INSERT CONFIDENTIAL designator Playbook Writing What you need to know with Collections about using Collections 13

  14. INSERT CONFIDENTIAL designator What’s in an Ansible Version? Understanding which Ansible versions to use with Collections 1. Ansible 2.9.10 or later via Ansible Automation Platform (AAP) (June 2020) 1 a. Ansible-maintained Collections are fully supported b. Contains some content but “frozen” c. Content fixes and enhancements are delivered in collections 2 2. Ansible Base 2.10, Ansible 2.10 (August, September 2020) a. ansible base + minimal, limited plugins 3. Ansible releases in Certified Containers (Execution Environments + AAP) (2021) 3 a. ansible base + select collections + containerized 14

  15. INSERT CONFIDENTIAL designator Automation and IT modernization Playbook Developer Recommendations 1. Update build and installation scripts to install collections after installing Ansible ○ pip install ansible ○ ansible-galaxy collection install cisco.ios 2. Update host inventories to reflect connection and plugin collection name ○ ansible_network_os: cisco.ios.ios ○ ansible_connection: ansible.netcommon.network_cli 3. Use fully qualified plugin names in all tasks ○ cisco.ios.ios_vlans ○ newfact: "{{ data|corg.cname.filter_plugin }}" 4. Migrate all stand-alone roles into collections ○ ansible_collections/corg/cname/roles/myrole ○ include_role: corg.cname.myrole 15

  16. INSERT CONFIDENTIAL designator Playbook Examples Recommended Today Future Usage (short-term) (long-term) # as shown in docs and examples # meta/runtime.yml from the cisco.ios collection: # this works with: # # - 2.9.10 + collections # vlans: # - 2.10 Base + collections # redirect: cisco.ios.ios_vlans # - 2.10 + collections # # - execution environments # allows the use of 'short names' # does not rely on any runtime.yml entries # use FQCN to ensure the collection is used on 2.9 tasks: tasks: - cisco.ios. ios_vlans : - cisco.ios. vlans : config: "{{ vlans }}" config: "{{ vlans }}" state: merged state: merged NOTE : Please use FQCN per task due to potential duplicate naming/ordering conflicts with Playbooks referencing multiple collections . The collections directive has other limitations, therefore FQCN is recommended. 16

  17. INSERT CONFIDENTIAL designator Automation and IT modernization Collection Author Recommendations 1. Identify, document and maintain a collections’ scope 2. Scaffold new collections: ansible-galaxy collection init corg.cname 3. Use Semantic versioning for collection versions: https:/ /semver.org/ 4. Update the collection’s meta/runtime.yml to reflect Ansible version compatibility a. Supports PEP440 Version Specifiers b. requires_ansible: '>=2.9.10,<2.11' #requires Ansible 2.9.10+ and 2.10.x 5. Maintain a README.md, include collection contents 6. Use meta/runtime.yml for deprecation and redirection of plugins 7. Populate tags in galaxy.yml for easier discoverability in galaxy and AH 17

  18. INSERT CONFIDENTIAL designator Automation and IT modernization Resources and Getting Started Collections User Guide and Collections Developer Guide ● https:/ /docs.ansible.com/ansible/devel/user_guide/collections_using.html https:/ /docs.ansible.com/ansible/devel/dev_guide/developing_collections.html The Bullhorn - Ansible Community Newsletter ● https:/ /bit.ly/thebullhorn Community Collections Overview ● https:/ /github.com/ansible-collections/overview Ansible.com Blog ● https:/ /www.ansible.com/blog search for “Collection” (many results) 18

  19. INSERT CONFIDENTIAL designator Thank you Red Hat is the world’s leading provider of enterprise open source software solutions. Award-winning support, training, and consulting services make Red Hat a trusted adviser to the Fortune 500. linkedin.com/company/red-hat facebook.com/redhatinc youtube.com/user/RedHatVideos twitter.com/RedHat 19

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend