ansible-awx

Liveness and readiness probe connection refused

余生颓废 提交于 2021-01-29 06:42:16
问题 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 container awx_web ports: - name: http containerPort: 8052 # the port of the container awx_web protocol: TCP livenessProbe: httpGet: path: / port: 8052 initialDelaySeconds: 5 periodSeconds: 5 readinessProbe: httpGet: path: / port: 8052

How to add a callback-plugin to AWX docker

元气小坏坏 提交于 2020-04-30 16:37:27
问题 Installed AWX docker from here - https://github.com/ansible/awx. I am trying to add a callback-plugin for a specific project as written here - https://docs.ansible.com/ansible-tower/latest/html/administration/tipsandtricks.html#using-callback-plugins-with-tower. Does not work. I add to Template-> EXTRA VARIABLES lines --- bin_ansible_callbacks: true callback_plugins: /callback_plugins stdout_callback: selective Does not work. I add the directory /var/lib/awx/projects/test/callback_plugins/ to

How to add a callback-plugin to AWX docker

不想你离开。 提交于 2020-04-30 16:37:16
问题 Installed AWX docker from here - https://github.com/ansible/awx. I am trying to add a callback-plugin for a specific project as written here - https://docs.ansible.com/ansible-tower/latest/html/administration/tipsandtricks.html#using-callback-plugins-with-tower. Does not work. I add to Template-> EXTRA VARIABLES lines --- bin_ansible_callbacks: true callback_plugins: /callback_plugins stdout_callback: selective Does not work. I add the directory /var/lib/awx/projects/test/callback_plugins/ to