Go to file
Nico Schottelius 8f83679c48 test cleaning tasks in a task fails:
[2020-12-20 18:01:50,264: WARNING/ForkPoolWorker-7] Pruning UncloudTask object (571ffc76-8b40-4cb6-9658-87030834bc6c)...
[2020-12-20 18:01:50,265: ERROR/ForkPoolWorker-7] Task uncloud.tasks.cleanup_tasks[f9fb1480-f122-41c9-bec1-3d6d0f92a22e] raised unexpected: RuntimeError('Never call result.get() within a task!\nSee http://docs.celeryq.org/en/latest/userguide/tasks.html#task-synchronous-subtasks\n')
Traceback (most recent call last):
  File "/home/nico/vcs/uncloud/venv/lib/python3.8/site-packages/celery/app/trace.py", line 405, in trace_task
    R = retval = fun(*args, **kwargs)
  File "/home/nico/vcs/uncloud/venv/lib/python3.8/site-packages/celery/app/trace.py", line 697, in __protected_call__
    return self.run(*args, **kwargs)
  File "/home/nico/vcs/uncloud/uncloud/tasks.py", line 13, in cleanup_tasks
    print(res.get())
  File "/home/nico/vcs/uncloud/venv/lib/python3.8/site-packages/celery/result.py", line 209, in get
    assert_will_not_block()
  File "/home/nico/vcs/uncloud/venv/lib/python3.8/site-packages/celery/result.py", line 37, in assert_will_not_block
    raise RuntimeError(E_WOULDBLOCK)
RuntimeError: Never call result.get() within a task!
See http://docs.celeryq.org/en/latest/userguide/tasks.html#task-synchronous-subtasks
2020-12-20 19:01:37 +01:00
archive Merge branch 'master' of code.ungleich.ch:uncloud/uncloud 2020-05-17 22:38:49 +02:00
bin add script to reset migrations 2020-06-21 14:34:48 +02:00
doc begin phasing in config of vpn via cdist 2020-12-20 12:20:54 +01:00
opennebula [refactor] cleaning up uncloud_net for Wireguardvpn 2020-12-13 11:38:41 +01:00
resources Speed-up CI with pre-built image, add resources directory 2020-05-08 12:15:40 +02:00
uncloud test cleaning tasks in a task fails: 2020-12-20 19:01:37 +01:00
uncloud_auth [refactor] cleaning up uncloud_net for Wireguardvpn 2020-12-13 11:38:41 +01:00
uncloud_net test cleaning tasks in a task fails: 2020-12-20 19:01:37 +01:00
uncloud_pay [refactor] cleaning up uncloud_net for Wireguardvpn 2020-12-13 11:38:41 +01:00
uncloud_service [refactor] cleaning up uncloud_net for Wireguardvpn 2020-12-13 11:38:41 +01:00
uncloud_storage Move django-based uncloud to top-level 2020-05-07 12:12:35 +02:00
uncloud_vm [refactor] cleaning up uncloud_net for Wireguardvpn 2020-12-13 11:38:41 +01:00
.gitignore Adapt README for SQLite 2020-05-07 12:31:59 +02:00
.gitlab-ci.yml Speed-up CI with pre-built image, add resources directory 2020-05-08 12:15:40 +02:00
LICENSE LICENSE added + fixed some imports 2019-12-03 16:49:10 +05:00
README.md Add make-admin command to uncloud_auth 2020-05-07 12:45:06 +02:00
manage.py Move django-based uncloud to top-level 2020-05-07 12:12:35 +02:00
models.dot Move django-based uncloud to top-level 2020-05-07 12:12:35 +02:00
models.png Move django-based uncloud to top-level 2020-05-07 12:12:35 +02:00
requirements.txt celery test 2020-12-13 19:50:36 +01:00

README.md

Uncloud

Cloud management platform, the ungleich way.

pipeline status coverage report

Useful commands

  • ./manage.py import-vat-rates path/to/csv
  • ./manage.py make-admin username

Development setup

Install system dependencies:

  • On Fedora, you will need the following packages: python3-virtualenv python3-devel openldap-devel gcc chromium

NOTE: you will need to configure a LDAP server and credentials for authentication. See uncloud/settings.py.

# Initialize virtualenv.
» virtualenv .venv
Using base prefix '/usr'
New python executable in /home/fnux/Workspace/ungleich/uncloud/uncloud/.venv/bin/python3
Also creating executable in /home/fnux/Workspace/ungleich/uncloud/uncloud/.venv/bin/python
Installing setuptools, pip, wheel...
done.

# Enter virtualenv.
» source .venv/bin/activate

# Install dependencies.
» pip install -r requirements.txt
[...]

# Run migrations.
» ./manage.py migrate
Operations to perform:
  Apply all migrations: admin, auth, contenttypes, opennebula, sessions, uncloud_auth, uncloud_net, uncloud_pay, uncloud_service, uncloud_vm
Running migrations:
  [...]

# Run webserver.
» ./manage.py runserver
Watching for file changes with StatReloader
Performing system checks...

System check identified no issues (0 silenced).
May 07, 2020 - 10:17:08
Django version 3.0.6, using settings 'uncloud.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.

Note on PGSQL

If you want to use Postgres:

  • Install on configure PGSQL on your base system.
  • OR use a container! podman run --rm -p 5432:5432 -e POSTGRES_HOST_AUTH_METHOD=trust -it postgres:latest