From 9d5445fd67225596ff29faff8d747429c5e42c1d Mon Sep 17 00:00:00 2001 From: qdo0obp Date: Tue, 4 Aug 2020 17:53:16 +0200 Subject: [PATCH 1/2] fix plugins dir --- templates/settings.py.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/settings.py.j2 b/templates/settings.py.j2 index a74006e..917eb17 100644 --- a/templates/settings.py.j2 +++ b/templates/settings.py.j2 @@ -83,3 +83,4 @@ REDHAT_CANDLEPIN_HOST = "{{ candlepin_host | default(omit) }}" REDHAT_CANDLEPIN_VERIFY = "{{ candlepin_verify | default(omit) }}" BROADCAST_WEBSOCKET_PORT = 8052 BROADCAST_WEBSOCKET_PROTOCOL = 'http' +AWX_ANSIBLE_COLLECTIONS_PATHS = '/var/lib/awx/vendor/awx_ansible_collections' From 9029b364e7d2f59a136880590af3ebd000e8c262 Mon Sep 17 00:00:00 2001 From: qdo0obp Date: Thu, 13 Aug 2020 13:37:56 +0200 Subject: [PATCH 2/2] adjust nginx tmp permissions --- templates/awx.yml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/awx.yml.j2 b/templates/awx.yml.j2 index d518418..4e4c3c2 100644 --- a/templates/awx.yml.j2 +++ b/templates/awx.yml.j2 @@ -105,7 +105,7 @@ spec: - command: - /bin/sh - -c - - /usr/bin/launch_awx.sh + - "/bin/chown -R nginx:root /var/lib/nginx && /usr/bin/launch_awx.sh" env: - name: AWX_ADMIN_USER value: {{ awx_admin_user }}