🐛(helm) fix createsuperuser command

The createsuperuser command changes recently.
We update the command to reflect the changes.
This commit is contained in:
Anthony LC
2024-06-28 11:20:57 +02:00
committed by Anthony LC
parent 0e5cbb1fc8
commit 4d1aafe0d9
4 changed files with 4 additions and 4 deletions

View File

@@ -61,7 +61,7 @@ backend:
command:
- "/bin/sh"
- "-c"
- python manage.py createsuperuser --admin_email admin@example.com --password admin
- python manage.py createsuperuser --username admin@example.com --password admin
restartPolicy: Never
frontend:

View File

@@ -89,7 +89,7 @@ backend:
command:
- "/bin/sh"
- "-c"
- python manage.py createsuperuser --admin_email $DJANGO_SUPERUSER_EMAIL --password $DJANGO_SUPERUSER_PASSWORD
- python manage.py createsuperuser --username $DJANGO_SUPERUSER_EMAIL --password $DJANGO_SUPERUSER_PASSWORD
restartPolicy: Never
frontend:

View File

@@ -89,7 +89,7 @@ backend:
command:
- "/bin/sh"
- "-c"
- python manage.py createsuperuser --admin_email $DJANGO_SUPERUSER_EMAIL --password $DJANGO_SUPERUSER_PASSWORD
- python manage.py createsuperuser --username $DJANGO_SUPERUSER_EMAIL --password $DJANGO_SUPERUSER_PASSWORD
restartPolicy: Never
frontend:

View File

@@ -89,7 +89,7 @@ backend:
command:
- "/bin/sh"
- "-c"
- python manage.py createsuperuser --admin_email $DJANGO_SUPERUSER_EMAIL --password $DJANGO_SUPERUSER_PASSWORD
- python manage.py createsuperuser --username $DJANGO_SUPERUSER_EMAIL --password $DJANGO_SUPERUSER_PASSWORD
restartPolicy: Never
frontend: