Skip to content
new_task.html 9.38 KiB
Newer Older
{% load static %} 
{% include "header.html" %}
{% include "logo.html" %}

<div class="container">
  <div class="dashboard">
    <div class="span8 offset2">
      <h1>New Task</h1> 
      <hr>


      <!-- {% if data.step == 'two' %} 
      <h3>Choose computing resource</h3> 
      {% elif data.step == 'three' %}  
      <h3>Task details and confirm</h3>    
Stefano Alberto Russo's avatar
Stefano Alberto Russo committed
      {% if data.step != 'created' %}
      <div style="float:left; background:#ffffff; margin-left:10px; margin-right:10px; margin-top:0px; margin-bottom:20px">
          <h4>Software container</h4>
          <div class="row" style="padding:5px">
          {% include "components/container.html" with container=data.task_container container_arch=data.task_container_arch disable_play_button=True  %}
Stefano Alberto Russo's avatar
Stefano Alberto Russo committed
      {% endif %}
      <div style="width:300px; float:left; background:#ffffff; margin-left:10px; margin-right:10px; margin-top:0px; margin-bottom:0px">
          <h4>Computing resource</h4>
          <div class="row" style="padding:5px">
          {% for computing in data.computings %}
          {% include "components/computing.html" with container=data.task_container container_arch=data.task_container_arch %}
      {% elif data.step == 'three' %}
      <div style="width:300px; float:left; background:#ffffff; margin-left:10px; margin-right:10px; margin-top:0px; margin-bottom:0px">
          <h4>Computing resource</h4>
          <div class="row" style="padding:5px">
          {% include "components/computing.html" with computing=data.task_computing %}
          <!-- <div style="width:300px; float:left; border: #e0e0e0 solid 0px; margin:10px; background:#f8f8f8; margin-bottom:15px">
          <table style="width:100%; height:126px;  border: #e0e0e0 solid 1px; margin:0">
           <tr valign="top">
            <td><b>Computing</b></td><td>
              <select name="task_computing_uuid_RECAP" >
              <option value="">{{ data.task_computing.name}}</option>
              </select>
            </td>
           </tr>

          </table>
          </div> -->

      <div style="width:300px;  background:#ffffff; margin-left:10px; margin-right:10px; margin-top:10px; margin-bottom:0px">

          <h4>Details and confirm</h4>
          <div style="width:620px; float:left; border: #e0e0e0 solid 0px; margin-top:10px; ; margin-bottom:15px">
          <form action="/new_task/" method="POST">
          <input type="hidden" name="task_container_uuid" value="{{data.task_container.uuid}}">
          <input type="hidden" name="task_container_arch" value="{{data.task_container_arch}}">          
          <input type="hidden" name="step" value="{{ data.next_step }}" />
          <input type="hidden" name="task_name" value="{{ data.task_name }}" />
          <input type="hidden" name="task_container_uuid" value="{{ data.task_container.uuid }}" />
          <input type="hidden" name="task_computing_uuid" value="{{ data.task_computing.uuid }}" />
          <table class="dashboard" style="max-width:640px; margin-bottom:20px">
           <tr><td colspan="2"></td></tr>
           <tr>
            <td valign="top"><b>Task name</b></td>
            <td><input type="text" name="task_name" value="" placeholder="" size="37" required /></td>
            <td valign="top">
            {% if request.user.profile.is_power_user %} 
            <b>Task&nbsp;password</b></td>
            {% else %}
            <b>Auth&nbsp;token</b></td>
            {% endif %}
             <input type="hidden" name="task_auth_token" value="{{data.task_auth_token}}">

             {% if request.user.profile.is_power_user %}            
             <input type="text" name="task_auth_password" placeholder="{{data.task_auth_token}}" size="37" style="-webkit-text-security: disc;" /><br>
             <font size=-1>
             A one-time task password. By default set to a randomly generated token, and usually automatically handled by Rosetta. Six chars min.
             </font>   
             {% else %}
             <input type="text" name="task_auth_password_disabled" value="{{data.task_auth_token}}" size="37" readonly/><br>
             <font size=-1>A randomly generated token to be used as task password. Usually automatically handled by Rosetta when loggin-in to the task.</font>
             {% endif %}
             <select name="access_method" >
             <option value="auto" selected>Auto</option>
             <option value="direct_tunnel">Direct tunnel</option>
             <option value="https_proxy">HTTPS proxy</option>
             <option value="None">None</option>
             </select>
           {% if data.task_computing.container_engines|length > 1 %}
            <td><b>Container&nbsp;engine</b></td><td>
             <select name="container_engine" >
             <option value="" selected>Default ({{data.task_computing.container_engines.0}})</option>
             {% for container_engine in data.task_computing.container_engines %}
             <option value="{{container_engine}}">{{container_engine}}</option>
            </td>
           {% if data.task_computing.wms == 'slurm' %}
             <tr><td>Partition</td><td><input type="text" name="computing_partition" value="{{ data.task_computing.conf.default_partition }}" placeholder="" size="20" /></td></tr>
             <tr><td>Cpus</td><td><input type="text" name="computing_cpus" value="{{ data.task_computing.conf.default_cpus }}" placeholder="" size="5" /></td></tr>
             <tr><td>Memory</td><td><input type="text" name="computing_memory" value="{{ data.task_computing.conf.default_memory }}" placeholder="" size="5" /></td></tr>
          {% if data.task_computing.default_container_engine == 'singularity' and not data.task_container.supports_custom_interface_port %}
          <div> <p style="font-size:15px; max-width:700px; margin-bottom:20px; margin-left:5px">
          <i class="fa fa-exclamation-triangle" style="color:orange"></i> This container does not support custom interface ports and the computing resource you selected might use a container engine/runtime which does not support port mapping. In this case, if the container interface port is already allocated, the task will fail to start.
          </p></div>
          {% endif %}

          {% if data.arch_emulation %}
          <div> <p style="font-size:15px; max-width:700px; margin-bottom:20px; margin-left:5px">
          <i class="fa fa-exclamation-triangle" style="color:orange"></i> 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.
          </p></div>
          {% endif %}

          {% if data.arch_auto_selection %}
          <div> <p style="font-size:15px; max-width:700px; margin-bottom:20px; margin-left:5px">
          <i class="fa fa-exclamation-triangle" style="color:orange"></i> The selected software container does not specify any architecture. This will leave to the container engine/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.
          
          <!-- {% if data.task_container.interface_port and not data.task_container.supports_interface_auth %}
          <div> <p style="font-size:15px; max-width:700px; margin-bottom:20px; margin-left:5px">
          <i class="fa fa-exclamation-triangle" style="color:orange"></i> This container does not support configuring any authentication. This means that unless it is somehow built-in within the container, anyone will be able to access it.
          </p></div>
          {% endif %}  -->
         
          <table style="max-width:620px;"><tr><td  style="border: 1px solid lightgray;" >
          I understand that files saved or modified in the task, if not explicitly saved to a persistent storage, will be LOST upon task completition.
          </td><td  style="border: 1px solid lightgray;" >
          <input class="form-check-input" type="checkbox" value="" id="invalidCheck" required>
          </td></table>
          
          <div style="width:640px; text-align:center; padding:20px">
          <input type="submit" value="Create task">    
          </div>
        Ok, task created. Go to your <a href="/tasks">task list</a>.