summaryrefslogtreecommitdiffstats
path: root/docs/docsite/rst/userguide/overview.rst
blob: 318c61349e61a435e0388a7abb78710a4aea3c82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
.. _overview:

Overview
========

.. index::
   pair: overview; features

Thank you for your interest in AWX. AWX makes it possible for users across an organization to share, vet, and manage automation content by means of a simple, powerful, and agentless technical implementation. IT managers can provide guidelines on how automation is applied to individual teams. Meanwhile, automation developers retain the freedom to write tasks that use existing knowledge, without the operational overhead of conforming to complex tools and frameworks. It is a more secure and stable foundation for deploying end-to-end automation solutions, from hybrid cloud to the edge. 

AWX allows users to define, operate, scale, and delegate automation across their organization.


Real-time Playbook Output and Exploration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; real-time playbook
   
Watch playbooks run in real time, seeing each host as they check in. Easily go back and explore the results for specific tasks and hosts in great detail. Search for specific plays or hosts and see just those results, or quickly zero in on errors that need to be corrected.

"Push Button" Automation
~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; automation

Access your favorite projects and re-trigger execution from the web interface with a minimum of clicking. AWX will ask for input variables, prompt for your credentials, kick off and monitor the job, and display results and host history over time.


Enhanced and Simplified Role-Based Access Control and Auditing
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; role-based access control

AWX allows for the granting of permissions to perform a specific task (such as to view, create, or modify a file) to different teams or explicit users through role-based access control (RBAC). 

Keep some projects private, while allowing some users to edit inventory and others to run playbooks against only certain systems--either in check (dry run) or live mode. You can also allow certain users to use credentials without exposing the credentials to them. Regardless of what you do, AWX records the history of operations and who made them--including objects edited and jobs launched.

Based on user feedback, AWX both expands and simplifies its role-based access control. No longer is job template visibility configured via a combination of permissions on inventory, projects, and credentials. If you want to give any user or team permissions to use a job template, just assign permissions directly on the job template. Similarly, credentials are now full objects in AWX's RBAC system, and can be assigned to multiple users and/or teams for use.

AWX includes an ‘Auditor’ type, who can see all aspects of the systems automation, but has no permission to run or change automation, for those that need a system-level auditor. (This may also be useful for a service account that scrapes automation information from the REST API.) Refer to :ref:`rbac-ug` for more information.

Subsequent releases of AWX provides more granular permissions, making it easier to delegate inside your organizations and remove automation bottlenecks.


Cloud & Autoscaling Flexibility
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; autoscaling flexibility
   pair: features; cloud flexibility

AWX features a powerful provisioning callback feature that allows nodes to request configuration on demand. While optional, this is an ideal solution for a cloud auto-scaling scenario, integrating with provisioning servers like Cobbler, or when dealing with managed systems with unpredictable uptimes. Requiring no management software to be installed on remote nodes, the callback solution can be triggered via a simple call to 'curl' or 'wget', and is easily embeddable in init scripts, kickstarts, or preseeds. Access is controlled such that only machines in inventory can request configuration.


The Ideal RESTful API
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; RESTful API

The AWX REST API is the ideal RESTful API for a systems management application, with all resources fully discoverable, paginated, searchable, and well modeled. A styled API browser allows API exploration from the API root at ``http://<server name>/api/``, showing off every resource and relation. Everything that can be done in the user interface can be done in the API - and more.

Backup and Restore
~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; backup and restore

The ability to backup and restore your system(s) has been integrated into the AWX setup playbook, making it easy for you to backup and replicate your instance as needed.

Ansible Galaxy Integration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; Ansible Galaxy integration

When it comes to describing your automation, everyone repeats the DRY mantra--"Don’t Repeat Yourself." Using centralized copies of Ansible roles, such as in Ansible Galaxy, allows you to bring that philosophy to your playbooks. By including an Ansible Galaxy requirements.yml file in your project directory, AWX automatically fetches the roles your playbook needs from Galaxy, GitHub, or your local source control. Refer to :ref:`ug_galaxy` for more information. 

Inventory Support for OpenStack
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; OpenStack inventory support


Ansible is committed to making OpenStack simple for everyone to use. As part of that,  dynamic inventory support has been added for OpenStack. This allows you to easily target any of the virtual machines or images that you’re running in your OpenStack cloud.


Remote Command Execution
~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; remote command execution

Often times, you just need to do a simple task on a few hosts, whether it’s add a single user, update a single security vulnerability, or restart a misbehaving service. AWX includes remote command execution--any task that you can describe as a single Ansible play can be run on a host or group of hosts in your inventory, allowing you to get managing your systems quickly and easily. Plus, it is all backed by an RBAC engine and detailed audit logging, removing any questions regarding who has done what to what machines.


System Tracking
~~~~~~~~~~~~~~~~

.. index::
   pair: features; system tracking
   pair: features; fact cache


You can collect facts by using the fact caching feature. Refer to :ref:`ug_fact_caching` for more detail.


Integrated Notifications
~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; notifications

AWX allows you to easily keep track of the status of your automation. You can configure stackable notifications for job templates, projects, or entire organizations, and configure different notifications for job start, job success, job failure, and job approval (for workflow nodes). The following notification sources are supported:

- Email
- Grafana
- IRC
- Mattermost
- PagerDuty
- Rocket.Chat
- Slack
- Twilio
- Webhook (post to an arbitrary webhook, for integration into other tools)

Additionally, you can :ref:`customize notification messages <ug_custom_notifications>` for each of the above notification types.


Satellite Integration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; inventory sources, Red Hat Satellite 6

Dynamic inventory sources for Red Hat Satellite 6 are supported. 


Run-time Job Customization
~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; run-time job customization

Bringing the flexibility of the Ansible command line, you can now prompt for any of the following:

- inventory
- credential
- job tags
- limits


Red Hat Insights Integration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; playbooks, Red Hat Insights

AWX supports integration with Red Hat Insights, which allows Insights playbooks to be used as a Project.


Enhanced User Interface
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; UI
   pair: features; user interface

The layout of the user interface is organized with intuitive navigational elements. With information displayed at-a-glance, it is intuitive to find and use the automation you need. Compact and expanded viewing modes show and hide information as needed, and various built-in attributes make it easy to sort.


Custom Virtual Environments
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; venv
   pair: features; custom environment

Custom Ansible environment support allows you to have different Ansible environments and specify custom paths for different teams and jobs.


Authentication Enhancements
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; authentication
   pair: features; OAuth 2 token


Cluster Management
~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; clustering
   pair: features; instance groups

Run-time management of cluster groups allows for easily configurable scaling.


Container Platform Support
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; container support

AWX is available as a containerized pod service for Kubernetes environments that can be scaled up and down easily as needed.


Workflow Enhancements
~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; workflows, inventory overrides
   pair: features; workflows, convergence nodes
   pair: features; workflows, nesting
   pair: features; workflows, approval
   pair: features; workflows, pause


In order to better model your complex provisioning, deployment, and orchestration workflows, AWX expanded workflows in a number
of ways:

- **Inventory overrides for Workflows**. You can now override an inventory across a workflow at workflow definition time, or even at launch time. Define your application deployment workflow, and then easily re-use them in multiple environments.

- **Convergence nodes for Workflows**. When modeling complex processes, you sometimes need to wait for multiple steps to finish before proceeding. Now AWX workflows can easily replicate this; workflow steps can now wait for any number of prior workflow steps to complete properly before proceeding.

- **Workflow Nesting**. Re-use individual workflows as components of a larger workflow. Examples include combining provisioning and application deployment workflows into a single master workflow.

- **Workflow Pause and Approval**. You can build workflows containing approval nodes that require user intervention. This makes it possible to pause workflows in between playbooks so that a user can give approval (or denial) for continuing on to the next step in the workflow.


Job Distribution
~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; jobs, slicing
   pair: features; jobs, distribution

AWX offers the ability to take a fact gathering or configuration job running across thousands of machines and slice it into individual job slices that can be distributed across your AWX cluster for increased reliability, faster job completion, and better cluster utilization.
If you need to change a parameter across 15,000 switches at scale, or gather information across your multi-thousand-node RHEL estate, you can now do so easily.


Support for deployment in a FIPS-enabled environment
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; environment, FIPS


If you require running your environment in restricted modes such as FIPS, AWX deploys and runs in such environments.


Limit the number of hosts per organization
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; limiting, hosts

Lots of large organizations have instances shared among many organizations. They do not want any one organization to be able to use all the licensed hosts, this feature allows superusers to set a specified upper limit on how many licensed hosts may be allocated to each organization. The AWX algorithm factors changes in the limit for an organization and the number of total hosts across all organizations. Any inventory updates will fail if an inventory sync brings an organization out of compliance with the policy. Additionally, superusers are able to 'over-allocate' their licenses, with a warning.


Inventory Plugins
~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; inventory plugins

Updated AWX to use the following inventory plugins from upstream collections if inventory updates are run with Ansible 2.9 and later:

- amazon.aws.aws_ec2
- community.vmware.vmware_vm_inventory
- azure.azcollection.azure_rm
- google.cloud.gcp_compute
- theforeman.foreman.foreman
- openstack.cloud.openstack
- ovirt.ovirt.ovirt
- awx.awx.tower


Secret Management System
~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. index::
   pair: features; secret management system
   pair: features; credential plugins
   pair: features; credential management

With a secret management system, external credentials are stored and supplied for use in AWX so you don't have to provide them directly.