From 64c55c882400c3aa641f359f2ce28114d745e1b5 Mon Sep 17 00:00:00 2001 From: Shane McDonald Date: Mon, 21 Jun 2021 09:49:36 -0400 Subject: [PATCH] Fix SYSTEM_UUID --- roles/installer/templates/config.yaml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/installer/templates/config.yaml.j2 b/roles/installer/templates/config.yaml.j2 index e0657ee8..d9b7d5d8 100644 --- a/roles/installer/templates/config.yaml.j2 +++ b/roles/installer/templates/config.yaml.j2 @@ -46,7 +46,7 @@ data: AWX_AUTO_DEPROVISION_INSTANCES = True CLUSTER_HOST_ID = socket.gethostname() - SYSTEM_UUID = '00000000-0000-0000-0000-000000000000' + SYSTEM_UUID = os.environ.get('MY_POD_UID', '00000000-0000-0000-0000-000000000000') CSRF_COOKIE_SECURE = False SESSION_COOKIE_SECURE = False