2020-05-11 20:13:20 +00:00
|
|
|
{% extends 'base.html' %}
|
2020-05-11 06:47:14 +00:00
|
|
|
|
|
|
|
{% block title %}Create{% endblock %}
|
2020-05-11 16:57:39 +00:00
|
|
|
|
2020-05-11 20:13:20 +00:00
|
|
|
{% block content %}
|
|
|
|
<div class="third-margin">
|
|
|
|
<h1>Create Capsul</h1>
|
|
|
|
</div>
|
|
|
|
<div class="third-margin">
|
|
|
|
{% if created_os %}
|
|
|
|
<p>
|
|
|
|
Your Capsul was successfully created! You should already see it listed on the
|
|
|
|
<a href="/console/">Capsuls page</a>, but it may not have obtained an IP address yet.
|
|
|
|
Its IP address should become visible once the machine has booted and taken a DHCP lease.
|
|
|
|
</p>
|
|
|
|
{% if created_os == 'debian10' %}
|
|
|
|
<p>
|
|
|
|
Note: because Debian delays fully booting until after entropy has been generated, Debian Capsuls
|
|
|
|
may take an extra-long time to obtain an IP address, like up to 10 minutes. Be patient.
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
{% if has_ssh_public_keys %}
|
2020-05-11 06:47:14 +00:00
|
|
|
<pre>
|
|
|
|
CAPSUL SIZES
|
|
|
|
============
|
|
|
|
type monthly cpus mem ssd net*
|
|
|
|
----- ------- ---- --- --- ---
|
|
|
|
f1-s $5.33 1 512M 25G .5TB
|
|
|
|
f1-m $7.16 1 1024M 25G 1TB
|
|
|
|
f1-l $8.92 1 2048M 25G 2TB
|
|
|
|
f1-x $16.16 2 4096M 25G 4TB
|
|
|
|
f1-xx $29.66 4 8096M 25G 8TB
|
|
|
|
f1-xxx $57.58 8 16G 25G 16TB
|
|
|
|
|
|
|
|
* net is calculated as a per-month average
|
|
|
|
* all VMs come standard with one public IPv4 addr</pre>
|
2020-05-11 16:57:39 +00:00
|
|
|
|
2020-05-11 06:47:14 +00:00
|
|
|
<form method="post">
|
|
|
|
<div class="row justify-start">
|
|
|
|
<label class="align" for="size">Capsul Size</label>
|
|
|
|
<select id="size" name="size">
|
|
|
|
{% for size in vm_sizes.keys() %}<option value="{{ size }}">{{ size }}</option>{% endfor %}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="row justify-start">
|
|
|
|
<label class="align" for="os">Operating System</label>
|
|
|
|
<select id="os" name="os">
|
|
|
|
{% for os_id, os in operating_systems.items() %}
|
|
|
|
<option value="{{ os_id }}">{{ os.description }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</div>
|
2020-05-11 20:13:20 +00:00
|
|
|
<div class="row justify-start">
|
|
|
|
<input type="hidden" name="ssh_public_key_count" value="{{ ssh_public_key_count}}"/>
|
|
|
|
<label class="align" for="ssh_keys">SSH Public Keys</label>
|
|
|
|
<div id="ssh_keys">
|
|
|
|
{% for key in ssh_public_keys %}
|
|
|
|
<label for="ssh_key_{{ loop.index - 1 }}">
|
|
|
|
<input type="checkbox" id="ssh_key_{{ loop.index - 1 }}" name="ssh_key_{{ loop.index - 1 }}" value="{{ key['name'] }}"/>
|
|
|
|
{{ key['name'] }}
|
|
|
|
</label>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-05-11 06:47:14 +00:00
|
|
|
<div class="row justify-end">
|
|
|
|
<input type="submit" value="Create">
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% else %}
|
|
|
|
<p>You don't have any ssh public keys yet.</p>
|
|
|
|
<p>You must <a href="/console/ssh/upload">upload one</a> before you can create a Capsul.</p>
|
|
|
|
{% endif %}
|
2020-05-11 20:13:20 +00:00
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2020-05-11 06:47:14 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block subcontent %}
|
|
|
|
{% if ssh_public_keys[0] is defined %}
|
|
|
|
<p>
|
|
|
|
Using our services implies that you agree to our terms of service & privacy policy.
|
|
|
|
</p>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="https://git.cyberia.club/congress/terms-of-service/plain/README">git.cyberia.club/congress/terms-of-service</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="https://git.cyberia.club/congress/privacy-policy/plain/README">git.cyberia.club/congress/privacy-policy</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2020-05-11 16:57:39 +00:00
|
|
|
{% block pagesource %}/templates/create-capsul.html{% endblock %}
|