From f21ec4de61e9a086398397cc78bf95ad1d2cd291 Mon Sep 17 00:00:00 2001 From: Marcelo Moreira de Mello Date: Fri, 30 Apr 2021 13:31:31 -0400 Subject: [PATCH] Mounts /var/lib/awx/projects on awx-web container --- roles/installer/templates/tower_deployment.yaml.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/installer/templates/tower_deployment.yaml.j2 b/roles/installer/templates/tower_deployment.yaml.j2 index 98eb17be..e080dd33 100644 --- a/roles/installer/templates/tower_deployment.yaml.j2 +++ b/roles/installer/templates/tower_deployment.yaml.j2 @@ -104,6 +104,8 @@ spec: mountPath: "/var/run/awx-rsyslog" - name: rsyslog-dir mountPath: "/var/lib/awx/rsyslog" + - name: "{{ meta.name }}-projects" + mountPath: "/var/lib/awx/projects" {% if development_mode | bool %} - name: awx-devel mountPath: "/awx_devel"