Insert a default EE into the development environment

This commit is contained in:
Jeff Bradberry 2020-12-10 11:12:24 -05:00 committed by Shane McDonald
parent fde7a1e3e5
commit 44ad6bfdce

View File

@ -26,3 +26,8 @@ make init
mkdir -p /awx_devel/awx/public/static
mkdir -p /awx_devel/awx/ui/static
mkdir -p /awx_devel/awx/ui_next/build/static
echo "ee, created = ExecutionEnvironment.objects.get_or_create(name='Default EE', \
defaults={'image': 'quay.io/awx/ee', \
'managed_by_tower': True}); \
print('Already exists' if not created else 'Created')" | awx-manage shell_plus --quiet-load