Ansible - Automation for Everyone!
Introduction about Ansible Core
Hideki Saito
Software Maintenance Engineer/Tower Support Team
2017.06
INSERT DESIGNATOR, IF NEEDED2
Who am I
• Hideki Saito <hsaito@redhat.com>
• Software Maintenance Engineer / Red Hat
• Work for Ansible Tower Support Team
• I love Ansible, OpenStack and Beer :)
• Twitter: @saito_hideki
INSERT DESIGNATOR, IF NEEDED3
Agenda
• Ansible Core Introduction
• Demo’s
• Let’s play with Ansible Core
• Getting Started
• Ad-Hoc command
• Playbooks
• Ansible Tower by Red Hat
INSERT DESIGNATOR, IF NEEDED4
Motivation and Proposition
Automate routine work to operate IT system.
• Let's start with where we can automate easily.
• Let's start automation using script language that
anyone can easily understand.
●
Education and training for programming take a lot of time.
●
The IT system includes various kinds of hardware / software.
INSERT DESIGNATOR, IF NEEDED5
AUTOMATION FOR EVERYONE
• Ansible is an IT automation tool
• Goals are simplicity and ease-of-use
• Managing target via SSH transportation
• Management steps is written by YAML
• New release is provided approximately
every 2 months
INSERT DESIGNATOR, IF NEEDED6
Introduce following components of
Ansible Core:
Ansible Core
Ansible Core is command-line IT automation Tool and libraries
1. Command Line Tools
2. Playbooks
3. Inventory
4. Modules
5. Plugins
INSERT DESIGNATOR, IF NEEDED7
COMMAND LINE TOOLS
Ansible Core contains some command line tools. Following 2 commands are
able to control your target hosts.
[Usage] ansible %Target% -i %Inventory% -m %Module%
$ ansible www -i inventory -m ping
[Usage] ansible %Target% -i %Inventory% -a %Ad-Hoc Command%
$ ansible www -i inventory -a “/sbin/reboot”
[Usage] ansible %Target% -i %Inventory% -m %Module%
$ ansible www -i inventory -m ping
[Usage] ansible %Target% -i %Inventory% -a %Ad-Hoc Command%
$ ansible www -i inventory -a “/sbin/reboot”
[Usage] ansible-playbook -i %Inventory% %Playbook%
$ ansible-playbook -i inventory playbook.yml
[Usage] ansible-playbook -i %Inventory% %Playbook%
$ ansible-playbook -i inventory playbook.yml
1. ansible command
2. ansible-playbook command
INSERT DESIGNATOR, IF NEEDED8
COMMAND MECHANISM
Target Hostmodule
Inventory
Executable
Python Code
Executable
Python Code
Executable
Python Code
ansible
(1)
(2)
(3)
(4)
(5)
(1) Lookup Target Host
(2) Read Module
(3) Generate executable code from Module
(4) Copy Executable python code to via SCP
(5) Execute python code on Target Host
INSERT DESIGNATOR, IF NEEDED9
PLAYBOOKS
Playbooks are Ansible’s configuration, deployment, and orchestration
language. You can write Playbooks easily by YAML.
01: ---
02: - hosts: www
03: vars:
04: new_name: ansible-host1
05: tasks:
06: - name: get hostname
07: shell: hostname
08: register: result
09: - name: set hostname
10: hostname:
11: name: "{{ new_name }}"
12: notify: show hostname
13: handlers:
14: - name: show hostname
15: debug:
16: msg: "before={{ result.stdout }} after={{ new_name }}"
INSERT DESIGNATOR, IF NEEDED10
INVENTORY (STATIC)
Ansible is able to working against multiple system at the same time.
You can select portions of systems listed in the inventory at running time.
01: [localhost]
02: 127.0.0.1
03:
04: [staging]
05: 192.168.0.1
06: 192.168.0.2
07:
08: [production]
09: www1.example.com
10: www2.example.com
11:
12: [vars:local]
13: ansible_connection=local
01: [localhost]
02: 127.0.0.1
03:
04: [staging]
05: 192.168.0.1
06: 192.168.0.2
07:
08: [production]
09: www1.example.com
10: www2.example.com
11:
12: [vars:local]
13: ansible_connection=local
INSERT DESIGNATOR, IF NEEDED11
INVENTORY (DYNAMIC)
Ansible easily supports all of these options via an external inventory system.
For example: OpenStack, AWS, GCE or something like that.
You can look these dynamic inventories at https://goo.gl/knXn3c
ansible
Executable
Inventory Code
JSON formatted
Inventory Info
via STDOUT
OpenStack
(1)
(2)
(3)
(4)
(1) Execute Dynamic Inventory
(2) Collect Target information
(3) Output Inventory to STDOUT
(4) Read Inventory Information
INSERT DESIGNATOR, IF NEEDED12
MODULES (1)
Ansible has a lot of modules that can be executed directly on remote hosts
or through Playbooks. You can see module index at https://goo.gl/yCGC4U
Group Target
Cloud
AWS, GCE, Azure,
OpenStack etc...
Clustering
Commands
Crypto
Database
Group Target
Cloud
AWS, GCE, Azure,
OpenStack etc...
Clustering K8S, Pacemaker etc...
Commands
command, shell,
expect etc...
Crypto openssl
Database
MySQL, PostgreSQL,
MSSQL etc ...
Group Target
Cloud
AWS, GCE, Azure,
OpenStack etc...
Clustering
Commands
Crypto
Database
Group Target
File
file, template, stat,
unarchive etc...
Identity FreeIPA, OpenDJ
Inventory
Add group and host to
inventory
Messaging RabbitMQ
Monitoring
datadog, logstash,
nagios etc...
INSERT DESIGNATOR, IF NEEDED13
MODULES (2)
Group Target
Net Tools
haproxy, nmcli, ldap,
get_url etc...
Network
Bigswitch, Cumulus,
Eos, IOS. Junos etc ...
Notification hipcat, irc, slack etc...
Packaging
rpm, yum, npm, apt
etc...
Remote management HP iLO, IPMI etc...
Source control
git, github, gitlab, hg,
subversion etc ...
Group Target
Storage NetApp, zfs etc...
System
user, group, service,
puppet :) etc...
Utilities Helper, Logic
Web infrastructure
apache, nginx, tower
etc...
Windows IIS, acl, package etc...
INSERT DESIGNATOR, IF NEEDED14
PLUGINS
Plugins are pieces of code that augment Ansible’s core functionality.
You can easily write your own. Please see: https://goo.gl/ZQ9hvb
For example: connection plugin
~ https://goo.gl/rLha4L ~
INSERT DESIGNATOR, IF NEEDED15
DEMO’S
• Getting Started
• Installation
• Ad-Hoc command
• Playbooks
INSERT DESIGNATOR, IF NEEDED16
Simple can be harder than complex. You have to work hard
to get your thinking clean to make it simple.
But it’s worth it in the end because once you get there, you
can move mountains.
~ Steve Jobs ~
INSERT DESIGNATOR, IF NEEDED17
How do we link a lot of system with each other?
Beyond the Core
What should we do the next-step?
Building an IT automation process as simple as possible. But ANSIBLE Core
does not provide enough functions to advance IT automation to the next
step. It does not provide API based control mechanism.
API
CLI
INSERT DESIGNATOR, IF NEEDED18
Introduce following Tower functions:
Ansible Tower by Red Hat
Ansible Tower is a web-based solution that is It’s designed to be the hub for
all of your automation tasks.
1. Overview
2. Job Template / Work-flow /Callback
3. Web based Dashboard
4. RESTful API
5. Isolation, Consolidation and
Cooperation
INSERT DESIGNATOR, IF NEEDED19
Tower#0
Ansible Tower - Architecture Design
What’s the Ansible Tower
Web Browser
Tower service
Database
AMQP broker
AMQP worker
Tower#1
Tower service
AMQP broker
AMQP worker
Tower#2
Tower service
AMQP broker
AMQP worker
INSERT DESIGNATOR, IF NEEDED20
Execute Job/Workflow/Callback
Ansible Tower runs a playbook as a Job.
●
Job Template
●
Jobs can be run periodically.
●
Workflow
●
Jobs can combine as a workflow
●
Callback URL
●
Jobs can launch from Target via
callback url
INSERT DESIGNATOR, IF NEEDED21
Web based Dashboard
Visualization of job execution result.
INSERT DESIGNATOR, IF NEEDED22
RESTful API
You can manage Tower server via RESTful API
If you want to manage Tower from other external IT system, you can use API!
●
Access https://tower/api/v1/
●
Manage Tower settings
●
Launch Job template
●
etc..
INSERT DESIGNATOR, IF NEEDED23
Isolation, Consolidation and Cooperation
Isolation of authority, consolidation management, and using external systems.
●
Role Based Access Control
●
Organization, Project, User, Team
●
Integrates with LDAP, AD, and other IAM
●
Logging aggregation with other system
●
Job isolation via namespace and chroots
●
etc...
INSERT DESIGNATOR, IF NEEDED24
If you want to proceed to the next step,
I believe Ansible Core and Tower will help you.
THANK YOU
plus.google.com/+RedHat
linkedin.com/company/red-hat
youtube.com/user/RedHatVideos
facebook.com/redhatinc
twitter.com/RedHatNews

More Related Content

PDF
Ansible hands-on-introduction
PPTX
Programmability and Automation in Data Center Networks: A talk on Hot Air Bal...
PPTX
Provisionator 3000
PPTX
Using Ansible and PowerShell Together
PDF
Concourse updates
PDF
Ansible Introduction
PPT
Devoxx - Flying with Griffon
PDF
DevOps with Ansible
Ansible hands-on-introduction
Programmability and Automation in Data Center Networks: A talk on Hot Air Bal...
Provisionator 3000
Using Ansible and PowerShell Together
Concourse updates
Ansible Introduction
Devoxx - Flying with Griffon
DevOps with Ansible

What's hot (20)

PDF
Control-with-Ansible-Tower
PPTX
Getting started with automation using ansible
PDF
CloudKit as a backend
PPTX
State in stateless serverless functions
PDF
Python Dependency Management - PyconDE 2018
PDF
Docker Cambridge: Serverless Functions Made Simple with OpenFaaS
PPTX
CI/CD on pure AWS
PDF
ConcourseCi Dockerimage
PDF
Manage any AWS resources with Terraform 0.12 - April 2020
PDF
Build a RESTful API with the Serverless Framework
PPTX
CI/CD with AWS Code Services
PPTX
Server Simulator
PDF
Ansible on AWS
PDF
Splunk user group - automating Splunk with Ansible
PDF
OpenFaaS 2019 Project Update
PDF
IL2CPP: Debugging and Profiling
PPTX
Programming for the Internet of Things
PDF
AltConf 2017: Full Stack Swift in 30 Minutes
PDF
OpenFaaS KubeCon Zero to Serverless in 60 seconds anywhere
PPTX
Ansible training | redhat Ansible 2.5 Corporate course - GOT
Control-with-Ansible-Tower
Getting started with automation using ansible
CloudKit as a backend
State in stateless serverless functions
Python Dependency Management - PyconDE 2018
Docker Cambridge: Serverless Functions Made Simple with OpenFaaS
CI/CD on pure AWS
ConcourseCi Dockerimage
Manage any AWS resources with Terraform 0.12 - April 2020
Build a RESTful API with the Serverless Framework
CI/CD with AWS Code Services
Server Simulator
Ansible on AWS
Splunk user group - automating Splunk with Ansible
OpenFaaS 2019 Project Update
IL2CPP: Debugging and Profiling
Programming for the Internet of Things
AltConf 2017: Full Stack Swift in 30 Minutes
OpenFaaS KubeCon Zero to Serverless in 60 seconds anywhere
Ansible training | redhat Ansible 2.5 Corporate course - GOT
Ad

Similar to Ansible nice-pdf-copy-for-pres (20)

PDF
ansible_rhel.pdf
PDF
Ansible101
PDF
Ansible Automation to Rule Them All
PDF
Ansible
PPTX
Ansible as configuration management tool for devops
PPTX
Ansible: What, Why & How
PDF
ansible_rhel_90.pdf
PDF
DevOpsDaysCPT Ansible Infrastrucutre as Code 2017
PPTX
Intro to-ansible-sep7-meetup
PDF
Ansible at work
PPTX
Introduction to Ansible
PDF
Ansible 2.0 - How to use Ansible to automate your applications in AWS.
PDF
Ansible 2.0 - How to use Ansible to automate your applications in AWS.
PDF
Ansible loves Python, Python Philadelphia meetup
PPTX
Mastering_Ansible_PAnsible_Presentation our score increases as you pick a
PDF
Ansible automation sa technical deck q2 fy19
PDF
Ansible & Salt - Vincent Boon
PPTX
SESSION Ansible how to deploy and push resources
PDF
Red hat ansible automation technical deck
ansible_rhel.pdf
Ansible101
Ansible Automation to Rule Them All
Ansible
Ansible as configuration management tool for devops
Ansible: What, Why & How
ansible_rhel_90.pdf
DevOpsDaysCPT Ansible Infrastrucutre as Code 2017
Intro to-ansible-sep7-meetup
Ansible at work
Introduction to Ansible
Ansible 2.0 - How to use Ansible to automate your applications in AWS.
Ansible 2.0 - How to use Ansible to automate your applications in AWS.
Ansible loves Python, Python Philadelphia meetup
Mastering_Ansible_PAnsible_Presentation our score increases as you pick a
Ansible automation sa technical deck q2 fy19
Ansible & Salt - Vincent Boon
SESSION Ansible how to deploy and push resources
Red hat ansible automation technical deck
Ad

Recently uploaded (20)

PDF
African Communication Research: A review
DOCX
Cambridge-Practice-Tests-for-IELTS-12.docx
PDF
Civil Department's presentation Your score increases as you pick a category
PPTX
Integrated Management of Neonatal and Childhood Illnesses (IMNCI) – Unit IV |...
PDF
Journal of Dental Science - UDMY (2021).pdf
PPTX
2025 High Blood Pressure Guideline Slide Set.pptx
PDF
Environmental Education MCQ BD2EE - Share Source.pdf
PDF
Skin Care and Cosmetic Ingredients Dictionary ( PDFDrive ).pdf
PDF
Myanmar Dental Journal, The Journal of the Myanmar Dental Association (2013).pdf
PDF
MICROENCAPSULATION_NDDS_BPHARMACY__SEM VII_PCI Syllabus.pdf
PDF
Myanmar Dental Journal, The Journal of the Myanmar Dental Association (2015).pdf
PDF
Everyday Spelling and Grammar by Kathi Wyldeck
PDF
Fun with Grammar (Communicative Activities for the Azar Grammar Series)
PDF
Disorder of Endocrine system (1).pdfyyhyyyy
PDF
0520_Scheme_of_Work_(for_examination_from_2021).pdf
PPTX
BSCE 2 NIGHT (CHAPTER 2) just cases.pptx
PPT
REGULATION OF RESPIRATION lecture note 200L [Autosaved]-1-1.ppt
PDF
LIFE & LIVING TRILOGY - PART (3) REALITY & MYSTERY.pdf
PDF
faiz-khans about Radiotherapy Physics-02.pdf
PDF
Literature_Review_methods_ BRACU_MKT426 course material
African Communication Research: A review
Cambridge-Practice-Tests-for-IELTS-12.docx
Civil Department's presentation Your score increases as you pick a category
Integrated Management of Neonatal and Childhood Illnesses (IMNCI) – Unit IV |...
Journal of Dental Science - UDMY (2021).pdf
2025 High Blood Pressure Guideline Slide Set.pptx
Environmental Education MCQ BD2EE - Share Source.pdf
Skin Care and Cosmetic Ingredients Dictionary ( PDFDrive ).pdf
Myanmar Dental Journal, The Journal of the Myanmar Dental Association (2013).pdf
MICROENCAPSULATION_NDDS_BPHARMACY__SEM VII_PCI Syllabus.pdf
Myanmar Dental Journal, The Journal of the Myanmar Dental Association (2015).pdf
Everyday Spelling and Grammar by Kathi Wyldeck
Fun with Grammar (Communicative Activities for the Azar Grammar Series)
Disorder of Endocrine system (1).pdfyyhyyyy
0520_Scheme_of_Work_(for_examination_from_2021).pdf
BSCE 2 NIGHT (CHAPTER 2) just cases.pptx
REGULATION OF RESPIRATION lecture note 200L [Autosaved]-1-1.ppt
LIFE & LIVING TRILOGY - PART (3) REALITY & MYSTERY.pdf
faiz-khans about Radiotherapy Physics-02.pdf
Literature_Review_methods_ BRACU_MKT426 course material

Ansible nice-pdf-copy-for-pres

  • 1. Ansible - Automation for Everyone! Introduction about Ansible Core Hideki Saito Software Maintenance Engineer/Tower Support Team 2017.06
  • 2. INSERT DESIGNATOR, IF NEEDED2 Who am I • Hideki Saito <[email protected]> • Software Maintenance Engineer / Red Hat • Work for Ansible Tower Support Team • I love Ansible, OpenStack and Beer :) • Twitter: @saito_hideki
  • 3. INSERT DESIGNATOR, IF NEEDED3 Agenda • Ansible Core Introduction • Demo’s • Let’s play with Ansible Core • Getting Started • Ad-Hoc command • Playbooks • Ansible Tower by Red Hat
  • 4. INSERT DESIGNATOR, IF NEEDED4 Motivation and Proposition Automate routine work to operate IT system. • Let's start with where we can automate easily. • Let's start automation using script language that anyone can easily understand. ● Education and training for programming take a lot of time. ● The IT system includes various kinds of hardware / software.
  • 5. INSERT DESIGNATOR, IF NEEDED5 AUTOMATION FOR EVERYONE • Ansible is an IT automation tool • Goals are simplicity and ease-of-use • Managing target via SSH transportation • Management steps is written by YAML • New release is provided approximately every 2 months
  • 6. INSERT DESIGNATOR, IF NEEDED6 Introduce following components of Ansible Core: Ansible Core Ansible Core is command-line IT automation Tool and libraries 1. Command Line Tools 2. Playbooks 3. Inventory 4. Modules 5. Plugins
  • 7. INSERT DESIGNATOR, IF NEEDED7 COMMAND LINE TOOLS Ansible Core contains some command line tools. Following 2 commands are able to control your target hosts. [Usage] ansible %Target% -i %Inventory% -m %Module% $ ansible www -i inventory -m ping [Usage] ansible %Target% -i %Inventory% -a %Ad-Hoc Command% $ ansible www -i inventory -a “/sbin/reboot” [Usage] ansible %Target% -i %Inventory% -m %Module% $ ansible www -i inventory -m ping [Usage] ansible %Target% -i %Inventory% -a %Ad-Hoc Command% $ ansible www -i inventory -a “/sbin/reboot” [Usage] ansible-playbook -i %Inventory% %Playbook% $ ansible-playbook -i inventory playbook.yml [Usage] ansible-playbook -i %Inventory% %Playbook% $ ansible-playbook -i inventory playbook.yml 1. ansible command 2. ansible-playbook command
  • 8. INSERT DESIGNATOR, IF NEEDED8 COMMAND MECHANISM Target Hostmodule Inventory Executable Python Code Executable Python Code Executable Python Code ansible (1) (2) (3) (4) (5) (1) Lookup Target Host (2) Read Module (3) Generate executable code from Module (4) Copy Executable python code to via SCP (5) Execute python code on Target Host
  • 9. INSERT DESIGNATOR, IF NEEDED9 PLAYBOOKS Playbooks are Ansible’s configuration, deployment, and orchestration language. You can write Playbooks easily by YAML. 01: --- 02: - hosts: www 03: vars: 04: new_name: ansible-host1 05: tasks: 06: - name: get hostname 07: shell: hostname 08: register: result 09: - name: set hostname 10: hostname: 11: name: "{{ new_name }}" 12: notify: show hostname 13: handlers: 14: - name: show hostname 15: debug: 16: msg: "before={{ result.stdout }} after={{ new_name }}"
  • 10. INSERT DESIGNATOR, IF NEEDED10 INVENTORY (STATIC) Ansible is able to working against multiple system at the same time. You can select portions of systems listed in the inventory at running time. 01: [localhost] 02: 127.0.0.1 03: 04: [staging] 05: 192.168.0.1 06: 192.168.0.2 07: 08: [production] 09: www1.example.com 10: www2.example.com 11: 12: [vars:local] 13: ansible_connection=local 01: [localhost] 02: 127.0.0.1 03: 04: [staging] 05: 192.168.0.1 06: 192.168.0.2 07: 08: [production] 09: www1.example.com 10: www2.example.com 11: 12: [vars:local] 13: ansible_connection=local
  • 11. INSERT DESIGNATOR, IF NEEDED11 INVENTORY (DYNAMIC) Ansible easily supports all of these options via an external inventory system. For example: OpenStack, AWS, GCE or something like that. You can look these dynamic inventories at https://goo.gl/knXn3c ansible Executable Inventory Code JSON formatted Inventory Info via STDOUT OpenStack (1) (2) (3) (4) (1) Execute Dynamic Inventory (2) Collect Target information (3) Output Inventory to STDOUT (4) Read Inventory Information
  • 12. INSERT DESIGNATOR, IF NEEDED12 MODULES (1) Ansible has a lot of modules that can be executed directly on remote hosts or through Playbooks. You can see module index at https://goo.gl/yCGC4U Group Target Cloud AWS, GCE, Azure, OpenStack etc... Clustering Commands Crypto Database Group Target Cloud AWS, GCE, Azure, OpenStack etc... Clustering K8S, Pacemaker etc... Commands command, shell, expect etc... Crypto openssl Database MySQL, PostgreSQL, MSSQL etc ... Group Target Cloud AWS, GCE, Azure, OpenStack etc... Clustering Commands Crypto Database Group Target File file, template, stat, unarchive etc... Identity FreeIPA, OpenDJ Inventory Add group and host to inventory Messaging RabbitMQ Monitoring datadog, logstash, nagios etc...
  • 13. INSERT DESIGNATOR, IF NEEDED13 MODULES (2) Group Target Net Tools haproxy, nmcli, ldap, get_url etc... Network Bigswitch, Cumulus, Eos, IOS. Junos etc ... Notification hipcat, irc, slack etc... Packaging rpm, yum, npm, apt etc... Remote management HP iLO, IPMI etc... Source control git, github, gitlab, hg, subversion etc ... Group Target Storage NetApp, zfs etc... System user, group, service, puppet :) etc... Utilities Helper, Logic Web infrastructure apache, nginx, tower etc... Windows IIS, acl, package etc...
  • 14. INSERT DESIGNATOR, IF NEEDED14 PLUGINS Plugins are pieces of code that augment Ansible’s core functionality. You can easily write your own. Please see: https://goo.gl/ZQ9hvb For example: connection plugin ~ https://goo.gl/rLha4L ~
  • 15. INSERT DESIGNATOR, IF NEEDED15 DEMO’S • Getting Started • Installation • Ad-Hoc command • Playbooks
  • 16. INSERT DESIGNATOR, IF NEEDED16 Simple can be harder than complex. You have to work hard to get your thinking clean to make it simple. But it’s worth it in the end because once you get there, you can move mountains. ~ Steve Jobs ~
  • 17. INSERT DESIGNATOR, IF NEEDED17 How do we link a lot of system with each other? Beyond the Core What should we do the next-step? Building an IT automation process as simple as possible. But ANSIBLE Core does not provide enough functions to advance IT automation to the next step. It does not provide API based control mechanism. API CLI
  • 18. INSERT DESIGNATOR, IF NEEDED18 Introduce following Tower functions: Ansible Tower by Red Hat Ansible Tower is a web-based solution that is It’s designed to be the hub for all of your automation tasks. 1. Overview 2. Job Template / Work-flow /Callback 3. Web based Dashboard 4. RESTful API 5. Isolation, Consolidation and Cooperation
  • 19. INSERT DESIGNATOR, IF NEEDED19 Tower#0 Ansible Tower - Architecture Design What’s the Ansible Tower Web Browser Tower service Database AMQP broker AMQP worker Tower#1 Tower service AMQP broker AMQP worker Tower#2 Tower service AMQP broker AMQP worker
  • 20. INSERT DESIGNATOR, IF NEEDED20 Execute Job/Workflow/Callback Ansible Tower runs a playbook as a Job. ● Job Template ● Jobs can be run periodically. ● Workflow ● Jobs can combine as a workflow ● Callback URL ● Jobs can launch from Target via callback url
  • 21. INSERT DESIGNATOR, IF NEEDED21 Web based Dashboard Visualization of job execution result.
  • 22. INSERT DESIGNATOR, IF NEEDED22 RESTful API You can manage Tower server via RESTful API If you want to manage Tower from other external IT system, you can use API! ● Access https://tower/api/v1/ ● Manage Tower settings ● Launch Job template ● etc..
  • 23. INSERT DESIGNATOR, IF NEEDED23 Isolation, Consolidation and Cooperation Isolation of authority, consolidation management, and using external systems. ● Role Based Access Control ● Organization, Project, User, Team ● Integrates with LDAP, AD, and other IAM ● Logging aggregation with other system ● Job isolation via namespace and chroots ● etc...
  • 24. INSERT DESIGNATOR, IF NEEDED24 If you want to proceed to the next step, I believe Ansible Core and Tower will help you.