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
9
votes
2 answers

How do you convert ansible ini inventory into json or yaml

Ansible AWX requires inventories to be entered in yaml or json format. When you start learning ansible, you may take the choice to start off with your inventory in ini…
user1717259
  • 2,717
  • 6
  • 30
  • 44
9
votes
5 answers

How can you run more than one simultaneous job in Ansible Tower?

It seems that all jobs are enqueued, and only one will run at a time. How can we run more than one?
Evan
  • 3,191
  • 4
  • 29
  • 25
8
votes
3 answers

Liveness and readiness probe connection refused

I keep getting this error when I try to setup liveness & readiness prob for my awx_web container Liveness probe failed: Get http://POD_IP:8052/: dial tcp POD_IP:8052: connect: connection refused Liveness & Readiness section in my deployment for the…
7
votes
5 answers

AWX all jobs stop processing and hang indefinitely -- why

Problem We've had a working Ansible AWX instance running on v5.0.0 for over a year, and suddenly all jobs stop working -- no output is rendered. They will start "running" but hang indefinitely without printing out any logging. The AWX instance is…
Jon
  • 952
  • 1
  • 11
  • 17
7
votes
1 answer

Ansible AWX - What AWX stands for?

I just wonder what AWX of Ansible AWX (Ansible Tower upstream project) stands for? Something or just 3 cool letters?
itshorty
  • 1,522
  • 3
  • 17
  • 39
6
votes
3 answers

Ansible: Unspecified GSS failure: Minor code may provide more information, no Kerberos credentials available

I have setup my Ansible Tower and Windows Kerberos / Active Directory authentication as specified here. It is the same procedure explained in the official documentation too. For information here is what I did - Installed the suggested Kerberos…
Chethan S.
  • 558
  • 2
  • 8
  • 28
5
votes
3 answers

Kubernetes Exposing An Application - AWX Operator

Hope you are all well, I am currently trying to rollout the awx-operator on to a Kubernetes Cluster and I am running into a few issues with going to the service from outside of the cluster. Currently I have the following services set up: NAME …
5
votes
3 answers

Ansible Tower REST API: Is there any way to get the logs/output of a job?

I have a Ansible job started by another Process. Now I need to check the status of the current running job in Ansible Tower. I am able to track the status whether it is running/success/failed/canceled with /jobs/{id} using REST API. But I would also…
Jeevitha G
  • 1,194
  • 3
  • 13
  • 20
4
votes
2 answers

Ansible: Failed to restart apache2.service: Connection timed out

I am using Ansible AWX to issue a restart command to restart an apache2 service on a host. The restart command is contained in a playbook. --- - name: Manage Linux Services hosts: all tasks: - name: Restart a linux service command:…
Promise Preston
  • 24,334
  • 12
  • 145
  • 143
4
votes
1 answer

How do I get Kerberos authentication working in k8s

I'm trying to authenticate via kerberos in AWX. I'm hosting AWX in Azure Kubernetes Services. KDC that we use is ldap. I'm able to communicate with the ldap server with ping and over port 88 with telnet when executing from the container itself. I'm…
Ian Clark
  • 77
  • 1
  • 8
4
votes
4 answers

How to create dynamic variables in ansible

The real scenario, want to get a resource id of sqs in AWS, which will be returned after the execution of a playbook. So, using this variable in files to configure the application. Persisting variables from one playbook to another checking out the…
Lakshman Diwaakar
  • 7,207
  • 6
  • 47
  • 81
3
votes
1 answer

AWX - Could not find imported module support code for version

i installed AWX and can run my playbooks. But for some reasons i get this Error-Message when i want to run my Playbook where the community.docker module is in the tasks. I get the Error Message: fatal: [local]: FAILED! => {"msg": "Could not find…
kbn
  • 31
  • 1
3
votes
1 answer

Kubernetes AWX operator hanging on managed database migration

I am running three Ubuntu VMs using VMware workstation and I have been able to succesfully deploy a 3 node Kubernetes cluster using k3sup along with k3s. I am now trying to stand up AWX using the AWX operator but when I check the logs in the AWX…
rf guy
  • 379
  • 10
  • 26
3
votes
0 answers

AWX: ansible lookup to access extra environment variables

On my local machine I set the following environment vars: export AWS_ACCESS_KEY='xxxx' export AWS_SECRET_KEY='xxxx' export AWS_REGION='us-east-1' then in a playbook I put this: ... tasks: - name: Get some secrets vars: db_password:…
3
votes
1 answer

Create namespace with Ansibl. Export NAMESPACE=awx

Hello! I tired to create some playbook for deploying "AWX Operator" and Kubernetes using manual of installation Install AWX Operator I have the command: export NAMESPACE=awx kubectl create ns ${NAMESPACE} I created tasks: - name: Echo export…
Oleg
  • 161
  • 1
  • 2
  • 10
1
2 3
28 29