New clusters are failing to during the Ansible phase due to Django releasing a new version (3.2) that is apparently not fully compatible with previous django verisons (3.1.x). The ensure_adminuser command is no longer being found.
If I manually run /opt/webui_venv/bin/python manage.py ensure_adminuser --username... I get an error: Unknown command: 'ensure_adminuser'
I can downgrade django to 3.1.6 (or probably any other 3.1.x) via pip, and the command then works.
New clusters are failing to during the Ansible phase due to Django releasing a new version (3.2) that is apparently not fully compatible with previous django verisons (3.1.x). The
ensure_adminuser
command is no longer being found.If I manually run
/opt/webui_venv/bin/python manage.py ensure_adminuser --username...
I get an error:Unknown command: 'ensure_adminuser'
I can downgrade django to 3.1.6 (or probably any other 3.1.x) via pip, and the command then works.