{% load static %} {% include "header.html" %} {% include "navigation.html" %}

New Task


{% if data.step != 'created' %}

Software container

{% include "components/container.html" with container=data.task_container container_arch=data.task_container_arch disable_play_button=True %}
{% endif %} {% if data.step == 'two' %}

Computing resource

{% for computing in data.computings %} {% include "components/computing.html" with container=data.task_container container_arch=data.task_container_arch %} {% endfor %}
{% elif data.step == 'three' %}

Computing resource

{% include "components/computing.html" with computing=data.task_computing %}

Details and confirm

{% csrf_token %} {% else %} Auth token {% endif %} {% if request.user.profile.is_power_user %} {% endif %} {% if data.task_computing.container_runtimes|length > 1 %} {% endif %} {% if data.task_computing.wms == 'slurm' %} {% endif %}
Task name
{% if request.user.profile.is_power_user %} Task password {% if request.user.profile.is_power_user %}
A one-time task password. By default set to a randomly generated token, and usually automatically handled by Rosetta. Six chars min. {% else %}
A randomly generated token to be used as task password. Usually automatically handled by Rosetta when loggin-in to the task. {% endif %}
Access method
Container runtime
Computing options
Partition
Cpus
Memory
{% if data.task_computing.default_container_runtime == 'singularity' and not data.task_container.supports_custom_interface_port %}

This container does not support custom interface ports and the computing resource you selected might use a container runtime which does not support port mapping (Singularity). In this case, if the container interface port is already allocated, the task will fail to start.

{% endif %} {% if data.arch_emulation %}

The selected software container architecture ({{ data.task_container_arch}}) can only be emulated on this computing resource, meaning the it will probably run quite slow.

{% endif %} {% if data.arch_auto_selection %}

The selected software container does not specify any architecture. This will leave to the container runtime either to auto-select the right image architecture on the registry, or to fallback on emulation if not found. Beware of potential incompatibilities or slowdowns.

{% endif %}
I understand that files saved or modified in the task, if not explicitly saved to a persistent storage, will be LOST upon task completition.
{% else %} Ok, task created. Go back to your task list. {% endif %}






{% include "footer.html" %}