Questions tagged [ansible-awx]

Ansible Tower is a GUI and REST API for managing both cloud-based and traditional/hybrid Ansible deployments

AWX provides a web-based user interface, REST API, and task engine built on top of Ansible. It is the upstream project for Red Hat Ansible Tower, a commercial derivative of AWX.

Home Page: https://github.com/ansible/awx

424 questions
1
vote
0 answers

Ansible AWX output showing partial result

Am using Ansible AWX here. My playbook is trying to read the whole content from a file but the output only showing partial result (as shown below). Anyone have any idea if it's possible to show the full result? Thanks in advance!
Gaming
  • 211
  • 2
  • 10
1
vote
1 answer

Minikube not able to expose service (AWX Operator) with ingress

I'm trying to expose an kubernetes service (AWX Operator) to access it outside from the deployed localhost. Port-forwarding is not an option, because it should be persistence. My .yaml file (awx.yaml) looks like this: --- apiVersion:…
L.Writer
  • 87
  • 7
1
vote
0 answers

Automation Hub collections by AWX

On my AWX System I've configure collection in requirement.yml and all is fine. Now, I need to insert another collection providing by Automation Hub. That's means the source is in another place. I've read this document Downloading a collection from…
1
vote
0 answers

Upgrade AWX 16.0.0 to 20.0.1

I inherited the following AWX installation: Ubuntu 18.04 on an AWS EC2 instance AWX 16.0.0 running in docker containers (awx_web and awx_task) the AWX database is an AWS RDS PostgreSQL. Now I try to upgrade AWX to latest 20.x (though 19.x would be…
Ciprian Stoica
  • 2,309
  • 5
  • 22
  • 36
1
vote
0 answers

Does AWX 17.0.1 support fetching collections from Github using requirements.yml

We are currently using AWX 17.0.1 with Ansible 2.9.17. Does this version of AWX support installing collections directory from a Git repository for example from GitHub? Using requirements.yml file? For example I can get collection community.mysql…
onknows
  • 6,151
  • 12
  • 65
  • 109
1
vote
1 answer

How can I install galaxy collections in awx?

I use a plugin such as nginx in ansible playbook. https://galaxy.ansible.com/nginxinc/nginx_core On server I can use cli to install the roles and collections as ansible-galaxy collection install nginxinc.nginx_core But how can I install it on…
freetimetime
  • 13
  • 1
  • 4
1
vote
1 answer

Ansible SSH user change during playbook execution causes freeze

I have a playbook that is launched from AWX with machine credentials, ie. with ssh_user_A. In this playbook, i need to perform a couple of tasks with another SSH user, ie. ssh_user_B. In terms of credentials, I have: machine credentials for…
Max Xapi
  • 750
  • 8
  • 22
1
vote
0 answers

Ansible can't find the drive

I am trying to do a simple task using the win_copy module which has to run through AWX. The task copies one file from drive C: to drive F:. But I am facing the following error: FAILED! => {"changed": false, "dest": "F:\test\", "msg": "Unhandled…
1
vote
0 answers

kubectl ingress edit overridden but can't find by what

I'm deploying an AWX on a K8S cluster with awx-operator and a GitHub repository that I found (https://github.com/kurokobo/awx-on-k3s) which can work with K8S too. So everything works good during deployment, except that I have to force PostgreSQL pod…
1
vote
1 answer

custom job status for awx/ansible tower workflows

AWX/Ansible Tower has it's own REST API service. From the below url structure i can get information about an in progress or finished workflow job: https:///api/v2/workflow_jobs// But the "status" field at this url doesn't show the…
Jai
  • 167
  • 1
  • 10
1
vote
0 answers

Unable to Install AWX with minikube on Centos 8

I am trying to install awx v19.0 on CentOS 8. Installing Minikube, AWX-Operator, AWX itself and enabling ingress addon works without any problems and all pods are running. But i can't access the awx dashboard with browser. I can find minikube logs…
1
vote
2 answers

What would be the best approach to emulate "templates hierarchy"?

Ansible Tower does not offer directory hierarchy for templates and workflows. How should we manage their growing number in a flat structure? I know we could use labels, but their use seems a bit tedious and assume that users already knows label…
Zee
  • 13
  • 2
1
vote
1 answer

Optional Variable Override in Ansible Playbook

I'm using AWX as a task runner to run a variety of Ansible modules. Some of the Ansible modules are third-party modules whose parameters I can't control without forking the module, which is undesirable for a variety of reasons. AWX supplies…
William
  • 188
  • 1
  • 8
1
vote
0 answers

Ansible module for Brocade/ICX is misbehaving

I've to perform some network automation in my infra using ansible. When I'm trying to use ansible module for icx switches it seems to be misbehaving. Playbook I used --- - name: ICX switch testing hosts: test-switch gather_facts: no vars: …
saurabh
  • 21
  • 3
1
vote
0 answers

Add instance in AWX

I implemented ansible awx through k3s (kubectl). But I have other servers that I would like to add as an instance to perform tasks in awx. I've already researched and looked in several places where to make the inclusion and I didn't find it. Can…