diff --git a/content/cloud/putty/images/pageant-add-key.png b/content/cloud/putty/images/pageant-add-key.png
new file mode 100644
index 0000000000000000000000000000000000000000..f49698c18e57bd96c5856cea2c894367e33f0916
Binary files /dev/null and b/content/cloud/putty/images/pageant-add-key.png differ
diff --git a/content/cloud/putty/images/putty-connect2instance.png b/content/cloud/putty/images/putty-connect2instance.png
new file mode 100644
index 0000000000000000000000000000000000000000..76e85e4589d37d086a37ccf16d0f15ff1dbedbd2
Binary files /dev/null and b/content/cloud/putty/images/putty-connect2instance.png differ
diff --git a/content/cloud/putty/images/puttygen-openssh2ppk.png b/content/cloud/putty/images/puttygen-openssh2ppk.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a5411cb174bc0db45dba87535bee68f896253ce
Binary files /dev/null and b/content/cloud/putty/images/puttygen-openssh2ppk.png differ
diff --git a/content/cloud/putty/images/puttygen-passphrase.png b/content/cloud/putty/images/puttygen-passphrase.png
new file mode 100644
index 0000000000000000000000000000000000000000..2216451b7a98f6633b5a42d0a26847162b432607
Binary files /dev/null and b/content/cloud/putty/images/puttygen-passphrase.png differ
diff --git a/content/cloud/putty/images/puttygen-ppk2openssh.png b/content/cloud/putty/images/puttygen-ppk2openssh.png
new file mode 100644
index 0000000000000000000000000000000000000000..04fbbc4927ef8955f60bae864e27f7f6ea5d85cd
Binary files /dev/null and b/content/cloud/putty/images/puttygen-ppk2openssh.png differ
diff --git a/content/cloud/putty/images/puttygen_new_key.png b/content/cloud/putty/images/puttygen_new_key.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b97c37ceaf84ff7f29911f46415877f1bbbf82e
Binary files /dev/null and b/content/cloud/putty/images/puttygen_new_key.png differ
diff --git a/content/cloud/putty/index.md b/content/cloud/putty/index.md
new file mode 100644
index 0000000000000000000000000000000000000000..96b175b6257143f5c2b45ba4a7cf7f1cf5d4a15a
--- /dev/null
+++ b/content/cloud/putty/index.md
@@ -0,0 +1,83 @@
+---
+title: "PuTTY"
+date: 2021-05-18T11:22:35+02:00
+draft: false
+---
+
+
+
+[PuTTY](https://www.chiark.greenend.org.uk/~sgtatham/putty/faq.html#faq-what) is a client program for the SSH on Windows OS.
+
+## Windows PuTTY Installer
+We recommend to download [Windows Installer](https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html) with PuTTY utilities as:
+* Pageant (SSH authentication agent) - store private key in memory without need to retype a passphrase on every login
+* PuTTYgen (PuTTY key generator) - convert OpenSSH format of id_rsa to PuTTY ppk private key and so on and so forth
+
+## PuTTY - Connect to the Instance
+
+* Run PuTTY and enter Host name in format "login@Floating IP address" where [login](/quick-start#create-virtual-machine-instance) is for example debian for Debian OS and Floating IP is [IP address](/quick-start/#associate-floating-ip) to access instance from internet.
+* In Category -> Connection -> SSH -> Auth:
+  *  Select **Attempt authentication using Pageant**
+  *  Select **Allow agent forwarding**
+  *  Browse and select your private key file (if needed [convert OpenSSH format id_rsa to Putty ppk](#convert-openssh-format-to-putty-ppk-format))
+* Return to *Session page* and Save selected configuration with **Save** button
+* Now you can log in using **Open** button
+* Enter passphrase for selected private key file if [Pageant SSH authentication agent](#pageant-ssh-agent) is not used
+  *  We recomend using Pageant SSH Agent to store private key in memory without need to retype a passphrase on every login
+
+![](images/putty-connect2instance.png)
+
+
+## Pageant SSH Agent
+
+* Run Pageant from Windows menu
+* Locate Pageant icon in the Notification Area and double click on it
+* Use **Add Key** button
+* Browse files and select your PuTTY Private Key File in format ppk
+* Use **Open** buton
+* Eter passphrase and confirm **OK** button
+* Your private key is now located in the memory without need to retype a passphrase on every login
+
+![](images/pageant-add-key.png)
+
+
+## PuTTY key Generator
+
+PuTTYgen is the PuTTY key generator. You can load in an existing private key and change your passphrase or generate a new public/private key pair or convert to/from OpenSSH/PuTTY ppk formats.
+
+## Convert OpenSSH format to PuTTY ppk format
+
+* Run PuTTYgen, in the menu Conversion -> Import key browse and load your OpenSSH format id_rsa private key using your passphrase
+* Save PuTTY ppk private key using button **Save private key**, browse destination for PuTTY format id_rsa.ppk and save file
+
+![](images/puttygen-openssh2ppk.png)
+
+
+## Convert PuTTY ppk private key to OpenSSH format
+
+* Run PuTTYgen, in the menu File -> Load private key browse and open your private key in format PuTTY ppk using your passphrase
+* In the menu Conversion -> Export OpenSSH key browse destination for OpenSSH format id_rsa and save file
+
+![](images/puttygen-ppk2openssh.png)
+
+
+## Change Password for Existing Private Key Pair
+
+* Load your existing private key using button **Load**, confirm opening using your passphrase
+* Enter new passphrase in field *Key passphrase* and confirm again in field *Confirm passphrase*
+* Save changes using button **Save private key**
+
+![](images/puttygen-passphrase.png)
+
+
+## Generate a New Key Pair
+
+* Start with **Generate button**
+* Generate some randomness by moving your mouse over dialog
+* Wait while the key is generated
+* Enter a comment for your key using "your-email@address"
+* Enter key passphrase, confirm key passphrase
+* Save your new private key in the "id_rsa.ppk" format using the **Save private key** button
+* Save the public key with the **Save public key** button
+
+![](images/puttygen_new_key.png)
diff --git a/content/cloud/quick-start/images/CreateKeyPair1.png b/content/cloud/quick-start/images/CreateKeyPair1.png
new file mode 100644
index 0000000000000000000000000000000000000000..1474fbf3157322fe54a0d8db8af5434dac27288e
Binary files /dev/null and b/content/cloud/quick-start/images/CreateKeyPair1.png differ
diff --git a/content/cloud/quick-start/images/CreateKeyPair2.png b/content/cloud/quick-start/images/CreateKeyPair2.png
new file mode 100644
index 0000000000000000000000000000000000000000..281e73336f59f6acbf74411ccadafffaa805846e
Binary files /dev/null and b/content/cloud/quick-start/images/CreateKeyPair2.png differ
diff --git a/content/cloud/quick-start/images/CreateKeyPair3.png b/content/cloud/quick-start/images/CreateKeyPair3.png
new file mode 100644
index 0000000000000000000000000000000000000000..c63005b57c5cd78755732d968998c634f7205645
Binary files /dev/null and b/content/cloud/quick-start/images/CreateKeyPair3.png differ
diff --git a/content/cloud/quick-start/images/SecurityGroups1.png b/content/cloud/quick-start/images/SecurityGroups1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e4e12e08821a10d036f0f7c48bdc760253981383
Binary files /dev/null and b/content/cloud/quick-start/images/SecurityGroups1.png differ
diff --git a/content/cloud/quick-start/images/SecurityGroups2.png b/content/cloud/quick-start/images/SecurityGroups2.png
new file mode 100644
index 0000000000000000000000000000000000000000..09a69aab8a78a899f4ba6113030860ca92c1f4a0
Binary files /dev/null and b/content/cloud/quick-start/images/SecurityGroups2.png differ
diff --git a/content/cloud/quick-start/images/SecurityGroups3.png b/content/cloud/quick-start/images/SecurityGroups3.png
new file mode 100644
index 0000000000000000000000000000000000000000..906c18df426e3f7365d2f0a197010d4c1b0cff44
Binary files /dev/null and b/content/cloud/quick-start/images/SecurityGroups3.png differ
diff --git a/content/cloud/quick-start/images/allocate_IP0.png b/content/cloud/quick-start/images/allocate_IP0.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bbad86a038f01efd15c8a20836a80034c19ba8b
Binary files /dev/null and b/content/cloud/quick-start/images/allocate_IP0.png differ
diff --git a/content/cloud/quick-start/images/allocate_IP1.png b/content/cloud/quick-start/images/allocate_IP1.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f80996783a344ae22893a0667168c37dbe8ac94
Binary files /dev/null and b/content/cloud/quick-start/images/allocate_IP1.png differ
diff --git a/content/cloud/quick-start/images/allocate_IP2.png b/content/cloud/quick-start/images/allocate_IP2.png
new file mode 100644
index 0000000000000000000000000000000000000000..c0b4ccc5b461f3c7dc87d14f1fdbabf09bb2ea3c
Binary files /dev/null and b/content/cloud/quick-start/images/allocate_IP2.png differ
diff --git a/content/cloud/quick-start/images/allocate_IP2a.png b/content/cloud/quick-start/images/allocate_IP2a.png
new file mode 100644
index 0000000000000000000000000000000000000000..92b18c2042e8bd3941674d4c0e8b72f427b95802
Binary files /dev/null and b/content/cloud/quick-start/images/allocate_IP2a.png differ
diff --git a/content/cloud/quick-start/images/allocate_IP3.png b/content/cloud/quick-start/images/allocate_IP3.png
new file mode 100644
index 0000000000000000000000000000000000000000..9ad6a27abf20c8982ee756389a6365ccf3e29c4c
Binary files /dev/null and b/content/cloud/quick-start/images/allocate_IP3.png differ
diff --git a/content/cloud/quick-start/images/allocate_IP4.png b/content/cloud/quick-start/images/allocate_IP4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e405eee69290f94c945a325ca6abad8578e3eeed
Binary files /dev/null and b/content/cloud/quick-start/images/allocate_IP4.png differ
diff --git a/content/cloud/quick-start/images/flavor_detail.png b/content/cloud/quick-start/images/flavor_detail.png
new file mode 100644
index 0000000000000000000000000000000000000000..acff073844a4876378613cb157024a6f2a83c71f
Binary files /dev/null and b/content/cloud/quick-start/images/flavor_detail.png differ
diff --git a/content/cloud/quick-start/images/instance0.png b/content/cloud/quick-start/images/instance0.png
new file mode 100644
index 0000000000000000000000000000000000000000..a86fca71fd3645a9a64efa9b7d308756cf0fbce8
Binary files /dev/null and b/content/cloud/quick-start/images/instance0.png differ
diff --git a/content/cloud/quick-start/images/instance1.png b/content/cloud/quick-start/images/instance1.png
new file mode 100644
index 0000000000000000000000000000000000000000..7513e4d5d509ebb7cb31d95fe2953f7ee622964d
Binary files /dev/null and b/content/cloud/quick-start/images/instance1.png differ
diff --git a/content/cloud/quick-start/images/instance2.png b/content/cloud/quick-start/images/instance2.png
new file mode 100644
index 0000000000000000000000000000000000000000..87d36d50343ccea74511e8426e3caed63a167aa9
Binary files /dev/null and b/content/cloud/quick-start/images/instance2.png differ
diff --git a/content/cloud/quick-start/images/instance3.png b/content/cloud/quick-start/images/instance3.png
new file mode 100644
index 0000000000000000000000000000000000000000..2508f20d6d9c57bb31aa3fdcd458d69d05c80fd1
Binary files /dev/null and b/content/cloud/quick-start/images/instance3.png differ
diff --git a/content/cloud/quick-start/images/instance4.png b/content/cloud/quick-start/images/instance4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e08791176c3e9c472d65cf14aae10a3233da946b
Binary files /dev/null and b/content/cloud/quick-start/images/instance4.png differ
diff --git a/content/cloud/quick-start/images/instance5.png b/content/cloud/quick-start/images/instance5.png
new file mode 100644
index 0000000000000000000000000000000000000000..9dea9cd8b0708fa0e7fa79d84f4c85d25a41e3f8
Binary files /dev/null and b/content/cloud/quick-start/images/instance5.png differ
diff --git a/content/cloud/quick-start/images/instance6.png b/content/cloud/quick-start/images/instance6.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e3b11595e45601c48f75ebcec74895dc3350fb7
Binary files /dev/null and b/content/cloud/quick-start/images/instance6.png differ
diff --git a/content/cloud/quick-start/images/instance7.png b/content/cloud/quick-start/images/instance7.png
new file mode 100644
index 0000000000000000000000000000000000000000..bdce0a7eaedcdd488bf1f86322b45c1e654eb6e3
Binary files /dev/null and b/content/cloud/quick-start/images/instance7.png differ
diff --git a/content/cloud/quick-start/images/instance8.png b/content/cloud/quick-start/images/instance8.png
new file mode 100644
index 0000000000000000000000000000000000000000..c2b8e8485b69addd27a48db54e12eaccdd719d67
Binary files /dev/null and b/content/cloud/quick-start/images/instance8.png differ
diff --git a/content/cloud/quick-start/images/instance_associate_ip.png b/content/cloud/quick-start/images/instance_associate_ip.png
new file mode 100644
index 0000000000000000000000000000000000000000..24fa5e633733fdb40a9b883cd20e6c4b6492fa9f
Binary files /dev/null and b/content/cloud/quick-start/images/instance_associate_ip.png differ
diff --git a/content/cloud/quick-start/images/instance_launch.png b/content/cloud/quick-start/images/instance_launch.png
new file mode 100644
index 0000000000000000000000000000000000000000..bc62a2e1af167519ef65de9565fe403830164ee8
Binary files /dev/null and b/content/cloud/quick-start/images/instance_launch.png differ
diff --git a/content/cloud/quick-start/images/instance_launch_configuration.png b/content/cloud/quick-start/images/instance_launch_configuration.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7569206fdb089561a045a5d32a36e2f8ad61556
Binary files /dev/null and b/content/cloud/quick-start/images/instance_launch_configuration.png differ
diff --git a/content/cloud/quick-start/images/instance_launch_details.png b/content/cloud/quick-start/images/instance_launch_details.png
new file mode 100644
index 0000000000000000000000000000000000000000..270d53766ff7c0b849ebfb95da334128766df462
Binary files /dev/null and b/content/cloud/quick-start/images/instance_launch_details.png differ
diff --git a/content/cloud/quick-start/images/instance_launch_flavor.png b/content/cloud/quick-start/images/instance_launch_flavor.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e711fcb2eb3cda6780a1b27840a2cca6cefde4b
Binary files /dev/null and b/content/cloud/quick-start/images/instance_launch_flavor.png differ
diff --git a/content/cloud/quick-start/images/instance_launch_key_pair.png b/content/cloud/quick-start/images/instance_launch_key_pair.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e2f921906612e9a4d3543fef1b48445248c0e18
Binary files /dev/null and b/content/cloud/quick-start/images/instance_launch_key_pair.png differ
diff --git a/content/cloud/quick-start/images/instance_launch_network-group.png b/content/cloud/quick-start/images/instance_launch_network-group.png
new file mode 100644
index 0000000000000000000000000000000000000000..00fd57ae60b91e03133d1d284498b6d1d0b96be8
Binary files /dev/null and b/content/cloud/quick-start/images/instance_launch_network-group.png differ
diff --git a/content/cloud/quick-start/images/instance_launch_network-user.png b/content/cloud/quick-start/images/instance_launch_network-user.png
new file mode 100644
index 0000000000000000000000000000000000000000..665cee11f6fa3adeb1d7a7c0f9469f7853ec7f01
Binary files /dev/null and b/content/cloud/quick-start/images/instance_launch_network-user.png differ
diff --git a/content/cloud/quick-start/images/instance_launch_source.png b/content/cloud/quick-start/images/instance_launch_source.png
new file mode 100644
index 0000000000000000000000000000000000000000..96f999e6de7d483e0c598dac04c874f13af149a5
Binary files /dev/null and b/content/cloud/quick-start/images/instance_launch_source.png differ
diff --git a/content/cloud/quick-start/images/key-pair-create.png b/content/cloud/quick-start/images/key-pair-create.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c85563f697382c314da006847fb410efcadc0b1
Binary files /dev/null and b/content/cloud/quick-start/images/key-pair-create.png differ
diff --git a/content/cloud/quick-start/images/network_secutity_groups_rules.png b/content/cloud/quick-start/images/network_secutity_groups_rules.png
new file mode 100644
index 0000000000000000000000000000000000000000..60473716611fe18b88edf63be66c614cf4fa7da1
Binary files /dev/null and b/content/cloud/quick-start/images/network_secutity_groups_rules.png differ
diff --git a/content/cloud/quick-start/images/resize.png b/content/cloud/quick-start/images/resize.png
new file mode 100644
index 0000000000000000000000000000000000000000..589f5bf1e4894bfef26f06b8e454d15484051f4f
Binary files /dev/null and b/content/cloud/quick-start/images/resize.png differ
diff --git a/content/cloud/quick-start/images/resize_confirm.png b/content/cloud/quick-start/images/resize_confirm.png
new file mode 100644
index 0000000000000000000000000000000000000000..73e05ac53448353d8523c448d356930fcc683064
Binary files /dev/null and b/content/cloud/quick-start/images/resize_confirm.png differ
diff --git a/content/cloud/quick-start/images/select.png b/content/cloud/quick-start/images/select.png
new file mode 100644
index 0000000000000000000000000000000000000000..d32b287da38439b7fcf8d52127cfe78be54e614d
Binary files /dev/null and b/content/cloud/quick-start/images/select.png differ
diff --git a/content/cloud/quick-start/images/shutdown1.png b/content/cloud/quick-start/images/shutdown1.png
new file mode 100644
index 0000000000000000000000000000000000000000..cef11d764a48d9fe1c3573b1e125e5904d0817e7
Binary files /dev/null and b/content/cloud/quick-start/images/shutdown1.png differ
diff --git a/content/cloud/quick-start/images/sign_in1.png b/content/cloud/quick-start/images/sign_in1.png
new file mode 100644
index 0000000000000000000000000000000000000000..3199ebfeb211dd3ba1b5dbcdc8d493ba4e0aec29
Binary files /dev/null and b/content/cloud/quick-start/images/sign_in1.png differ
diff --git a/content/cloud/quick-start/images/sign_in2.png b/content/cloud/quick-start/images/sign_in2.png
new file mode 100644
index 0000000000000000000000000000000000000000..32604f46eafc4e3de26df5dae921166608aeb5cb
Binary files /dev/null and b/content/cloud/quick-start/images/sign_in2.png differ
diff --git a/content/cloud/quick-start/images/sign_in3.png b/content/cloud/quick-start/images/sign_in3.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8da38b8e920537f5afe4a02b51851ac543492a9
Binary files /dev/null and b/content/cloud/quick-start/images/sign_in3.png differ
diff --git a/content/cloud/quick-start/images/ssh_login1.png b/content/cloud/quick-start/images/ssh_login1.png
new file mode 100644
index 0000000000000000000000000000000000000000..539dc92b6395038c347cd34dd94450c7e9993fed
Binary files /dev/null and b/content/cloud/quick-start/images/ssh_login1.png differ
diff --git a/content/cloud/quick-start/images/ssh_login2.png b/content/cloud/quick-start/images/ssh_login2.png
new file mode 100644
index 0000000000000000000000000000000000000000..d354b87e94861df285aaa1a95bcff9c812eb86a4
Binary files /dev/null and b/content/cloud/quick-start/images/ssh_login2.png differ
diff --git a/content/cloud/quick-start/index.md b/content/cloud/quick-start/index.md
new file mode 100644
index 0000000000000000000000000000000000000000..a649fe5105961bdb4619afe6302b639eeb81e261
--- /dev/null
+++ b/content/cloud/quick-start/index.md
@@ -0,0 +1,263 @@
+---
+title: "Quick Start"
+date: 2021-05-18T11:22:35+02:00
+draft: false
+---
+
+
+The following guide will take you through the steps necessary to start your first virtual machine instance.
+
+Prerequisites:
+* Up-to-date web browser
+* Active account in MetaCentrum (https://metavo.metacentrum.cz/en/application/index.html)
+* Basic knowledge of SSH (for remote connections)
+
+
+
+## Sign In
+
+The dashboard is available at [https://dashboard.cloud.muni.cz](https://dashboard.cloud.muni.cz).
+
+1. Select `EINFRA CESNET`.
+
+{{< hint info >}}
+**NOTICE**
+
+Users of the Czech national e-infrastructure (also MetaCentrum/CERIT-SC/MUNI users) should always select <strong>EINFRA CESNET</strong>.
+{{< /hint >}}
+
+{{< hint info >}}
+**NOTICE**
+International users may choose <strong>EGI Check-in</strong>, <strong>DEEP AAI</strong> or <strong>ELIXIR AAI</strong>, depending on their membership in these projects.
+{{< /hint >}}
+
+
+{{< hint danger >}}
+**WARNING**
+
+If you use multiple accounts, you should use the one that you need for your corresponing work.
+{{< /hint >}}
+
+2. Click on **Sign In**.
+
+  ![](images/sign_in1.png)
+
+3. Select your institution from the drop-down list.
+
+{{< hint info >}}
+**NOTICE**
+
+You can use the search box at the top as a filter.
+{{< /hint >}}
+
+4. Provide your institution-specific sign-in credentials.
+5. Wait to be redirected back to our dashboard.
+
+{{< hint info >}}
+**NOTICE**
+If your attempts repeatedly result in an error message about projects, make sure you have an active MetaCentrum account
+and that you are selecting the correct institution when attempting to log in. If the problem persists, please, contact user
+support.
+{{< /hint >}}
+
+## Create Key Pair
+
+All virtual machine instances running in the cloud have to be accessed remotely. The most common way of accessing
+an instance remotely is SSH. Using SSH requires a pair of keys - a public key and a private key.
+
+1. In **Project &gt; Compute &gt; Key Pairs**, click the **Create Key Pair** or **Import Public Key ** button.
+      * **Import Key Pair** if existing SSH key on your local computer, but not listed as available, then import public key using button **Import Public Key**
+        * Insert Key Pair Name
+        * Select SSH key for Key Type
+        * Load Public Key from a file or copy/paste public key content in the field
+      * **Create key Pair** if any public key not available
+        * Use button **Create Key Pair**
+        * Insert Key Pair Name. Avoid using special characters, if possible.
+        * Select SSH key for Key Type
+        * Use button **Create KeyPair**
+        * Copy Private Key to Clipboard and save it to the ~/.ssh/id_rsa on your local computer
+        * Confirm using button **Done**
+        * Now the public key is available down on the page. Use arrow before key name to show public part. Copy this public key to the file ~/.ssh/id_rsa.pub on your local computer
+
+      ![](images/key-pair-create.png)
+
+2. Set Access Privileges on .ssh Folder using commands
+```
+chmod 700 .ssh/
+chmod 644 .ssh/id_rsa.pub
+chmod 600 .ssh/id_rsa
+```
+
+For details, refer to [the official documentation](https://docs.openstack.org/horizon/train/user/configure-access-and-security-for-instances.html).
+
+## Update Security Group
+
+In MetaCentrum Cloud, all incoming traffic from external networks to virtual machine instances is blocked by default.
+You need to explicitly allow access to virtual machine instances and services via a security group.
+
+You need to add two new rules to be able to connect to your new instance (or any instance using the given security group).
+This is similar to setting up firewall rules on your router or server. If set up correctly, you will be able to access
+your virtual machine via SSH from your local terminal.
+
+1. Go to **Project &gt;  Network &gt; Security Groups**. Click on **Manage Rules**, for the **default** security group.
+
+2. Click on **Add rule**, choose **SSH** and leave the remaining fields unchanged.
+   This will allow you to access your instance.
+
+3. Click on **Add rule**, choose **ALL ICMP** and leave the remaining fields unchanged.
+   This will allow you to `ping` your instance.
+
+  ![](images/network_secutity_groups_rules.png)
+
+
+{{< hint danger >}}
+**WARNING**
+You have 2 possibilities how to configure security groups policy. One is through CIDR which specifies rules for concrete network range. The second one specifies
+rules for members of specified security group, i.e. policy will be applied on instances who belong to selected security group.
+{{</hint>}}
+
+
+For details, refer to [the official documentation](https://docs.openstack.org/horizon/train/user/configure-access-and-security-for-instances.html).
+
+## Create Virtual Machine Instance
+
+1. In **Compute &gt; Instances**, click the **Launch Instance** button.
+
+  ![](images/instance_launch.png)
+
+2. Choose name, description, and the number of instances.
+   If you are creating more instances, `-%i` will be automatically appended to the name of each instance.
+
+  ![](images/instance_launch_details.png)
+
+3. Choose an image from which to boot the instance. Image will be automatically copied to a persistent volume
+   that will remain available even after the instance has been deleted.
+
+  ![](images/instance_launch_source.png)
+
+4. Choose the size of your instance by selecting a flavor. Additional volumes for data can be attached later on.
+
+  ![](images/instance_launch_flavor.png)
+
+  On following image you can also find details about concrete flavor in highlighted sections
+
+  ![](images/flavor_detail.png)
+
+5. Select Network
+
+      * For personal project select personal-project-network-subnet from network 78-128-250-pers-proj-net
+        ![](images/instance_launch_network-user.png)
+      * For group project select group-project-network-subnet from network group-project-network (check if [Router gateway](/network#associate-floating-ip") is set)
+        ![](images/instance_launch_network-group.png)
+6. Key pair
+      * **If public key was imported already**, add existing key to the instance and continue using button **Next**
+      * **Import Key Pair** if you have existing SSH key on your local computer, but not listed as available, then import public key using button **Import Key**
+        * Continue steps in section [Create Key Pair](#create-key-pair) -> Import Key Pair
+        * Add key and continue using button **Next**
+      * **Create key Pair** if you don't have any public key available
+        * Use button **Create Key Pair**
+        * Continue steps in section [Create Key Pair](#create-key-pair) -> Create Key Pair
+        * Add key and continue using button **Next**
+    ![Select Key pair](/quick-start/images/instance_launch_key_pair.png)
+
+7. __(optional)__ On the Configuration tab, you can use `user_data` to customize your instance at boot.
+    ![](/quick-start/images/instance_launch_configuration.png)
+   See [cloud-init](https://cloud-init.io/) for details.
+
+8. Use button Launch Instance to initialize new instance
+
+9. Wait until instance initialization finishes and [Associate Floating IP](/network/#associate-floating-ip). For group project always select the same network as used in [Router gateway](/network/#setup-router-gateway-required-for-group-projects)
+    ![](images/instance_associate_ip.png)
+
+10. Login using your SSH key as selected in Key pair above
+Connect to the instance using **ssh image login**, [id_rsa key registered in Openstack](#create-key-pair) and [Floating IP](/network/#associate-floating-ip).
+
+
+{{< hint info >}}
+**NOTICE**
+On Linux and Mac you can use already present SSH client. On Windows there are other possibilities how to connect via SSH. One of the most common is <a href="https://en.wikipedia.org/wiki/PuTTY">PuTTy</a> SSH client. How to configure and use PuTTy you can visit our tutorial <a href="https://cloud.gitlab-pages.ics.muni.cz/documentation/putty/#putty">here</a>.
+{{</hint>}}
+
+
+To get **ssh image login** of corresponding image  go to **Project &gt;  Compute &gt; Images**. There you will have list of all available images and then you have to click on name of one you want.
+  ![](images/ssh_login1.png)
+
+And then you must check section **Custom Properties** where you will see a property **default_user** which is **ssh image login**. In picture **ssh image login** for that image is "debian".
+  ![](images/ssh_login2.png)
+
+
+Then you can connect to your instance using following command:
+
+```
+ssh -A -X -i ~/.ssh/id_rsa <ssh_image_login>@<Floating IP>
+```
+
+So it can look like:
+
+```
+ssh -A -X -i ~/.ssh/id_rsa debian@192.168.18.15
+```
+```
+-A      Enables forwarding of the authentication agent connection.
+-X      Enables X11 forwarding.
+```
+| OS | login for ssh command|
+|---|---|
+|Debian |debian|
+|Ubuntu| ubuntu|
+|Centos| centos|
+
+
+
+For details, refer to [the official documentation](https://docs.openstack.org/horizon/train/user/launch-instances.html).
+
+
+## Setup Router gateway (Required only for GROUP projects!!)
+
+{{< hint danger >}}
+**WARNING**
+If you have <a href="https://cloud.gitlab-pages.ics.muni.cz/documentation/register/#group-project">GROUP</a> project, you need to configure
+Router gateway for your network. <a href="https://cloud.gitlab-pages.ics.muni.cz/documentation/network/#setup-router-gateway-required-for-group-projects">Here</a> you can find the manual.
+{{</hint>}}
+
+
+## Associate Floating IP
+
+
+{{< hint danger >}}
+**WARNING**
+To make an instance accessible from external networks (e.g., The Internet), a so-called Floating IP Address has to be
+associated with it. <a href="https://cloud.gitlab-pages.ics.muni.cz/documentation/network/#associate-floating-ip">Here</a> you can find the manual.
+{{</hint>}}
+
+## Create Volume
+
+When storing a large amount of data in a virtual machine instance, it is advisable to use a separate volume and not the
+root file system containing the operating system. It adds flexibility and often prevents data loss. Volumes can be
+attached and detached from instances at any time, their creation and deletion are managed separately from instances.
+
+1. In **Project &gt; Volumes &gt; Volumes**, select **Create Volume**.
+2. Provide name, description and size in GBs. If not instructed otherwise, leave all other fields unchanged.
+3. Click on **Create Volume**.
+4. __(optional)__ In **Project &gt; Compute &gt; Instances**, select **Attach Volume** from the **Actions** drop-down menu for the
+   given instance.
+5. __(optional)__ Select **Volume ID** from the drop-down list and click **Attach Volume**.
+
+For details, refer to [the official documentation](https://docs.openstack.org/horizon/train/user/manage-volumes.html).
+
+## Instance resize
+If you find out that you need to select another flavor for your instance, here is a tutorial how to do it:
+
+Before resizing u should save all your unsaved work and you should also consider making data backup in case if something goes wrong.
+
+First you must go to your instance and then you select **Resize Instance**
+
+  ![](images/resize.png)
+
+After that you select what flavor you want instead of your current one and then you confirm your choice
+
+  ![](images/select.png)
+
+Then you just have to either confirm or revert selected changes in instance menu
+
+  ![](images/resize_confirm.png)
diff --git a/content/cloud/register/index.md b/content/cloud/register/index.md
new file mode 100644
index 0000000000000000000000000000000000000000..837b641bb2b9b35b4415505653e9e02365f478b9
--- /dev/null
+++ b/content/cloud/register/index.md
@@ -0,0 +1,97 @@
+---
+title: "How to Get Access"
+date: 2021-05-18T11:22:35+02:00
+draft: false
+---
+
+
+Access to MetaCentrum Cloud is granted to users with active accounts in
+one of the following identity federations
+* __EINFRA CESNET__,
+* __EGI Check-in__`*`,
+* __ELIXIR AAI__`*`.
+* __DEEP AAI__`*`.
+
+Users from the Czech academic community should always use the `EINFRA CESNET`
+identity provider, unless instructed otherwise by user support.
+Identity providers marked with `*` should only be used by international
+communities with explicitly negotiated resource allocations.
+
+MetaCentrum Cloud provides the following ways for allocating resources
+* __personal project__,
+* __group project__.
+
+## Personal Project
+
+A personal project goal is to gain cloud environment knowledge, resource allocation quotas are severe and could not be extended.
+
+{{< hint danger >}}
+**WARNING**
+
+A personal project resource allocation quotas are severe and could not be extended.
+{{</hint>}}
+
+
+Personal projects are available automatically to all users of the Czech
+e-infrastructure for science, development, and education.
+
+To register, follow instructions for
+[registration in the MetaCentrum VO](https://metavo.metacentrum.cz/en/application/index.html).
+
+Personal projects are intended as a low-barrier entry
+into the infrastructure for testing and exploration of features. Any
+serious resource usage requires the use of a group project, see below.
+
+The following already established terms and conditions apply
+* [Terms and Conditions for Access to the CESNET e-infrastructure](https://www.cesnet.cz/conditions/?lang=en)
+* [MetaCentrum End User Statement and Usage Rules](https://www.metacentrum.cz/en/about/rules/index.html)
+* [Appreciation Formula / Acknowlegement in Publications](https://wiki.metacentrum.cz/wiki/Usage_rules/Acknowledgement)
+* [Account Validity](https://wiki.metacentrum.cz/wiki/Usage_rules/Account)
+* [Annual Report](https://wiki.metacentrum.cz/wiki/MetaCentrum_Annual_Report_%E2%88%92_Author_Instructions)
+
+## Group Project
+
+{{< hint info >}}
+**NOTICE**
+
+Preferable way of requesting new <a href="https://cloud.gitlab-pages.ics.muni.cz/documentation/register/#group-project">GROUP</a> project is through this online application form: <a href="https://projects.cloud.muni.cz/">https://projects.cloud.muni.cz/</a>
+{{</hint>}}
+
+
+Group projects are the primary resource allocation unit for MetaCentrum Cloud.
+Any user or a group of users requiring a non-trivial amount of resources must
+request a group project from User Support and provide the following basic information:
+* __name of the project__,
+* __purpose of the project__,
+* __contact information__,
+* __amount and type of requested resources__ _[(please read first)](/faq/#how-many-floating-ips-does-my-group-project-need)_,
+* __impact would the service have on unavailability for 1h, 1d, 1w__,
+* __estimated length of the project__,
+* __access control information__ _[(info)](#get-access-control-information)_.
+
+## Get access control information
+__Access control__ is based on information provided by the selected identity federation
+and is presented in the form of a VO name and, optionally, a group name. Every user
+with active membership in the specified VO/group will have full access to all resources
+of the requested group project. Membership is managed with tools provided by the selected
+identity federation, in a self-service manner.
+
+If you already have VO/group, and already using services
+provided by the __CESNET e-Infrastructure__ e.g. MetaCentrum, Data Care,
+or you represent a project internal to __Masaryk University__,
+please visit OpenID Connect User Profile according to your federation:
+ - [EINFRA CESNET](https://login.cesnet.cz/oidc/manage/user/profile)
+ - [EGI](https://aai.egi.eu/oidc/manage/user/profile)
+ - [ELIXIR](https://login.elixir-czech.org/oidc/manage/user/profile)
+
+and provide us with information that you see on the page. That is going to be __access control information__.
+
+If you don't have VO/group or you know nothing about it, please contact MUNI Identity Management team
+in order to create a new group within the Unified Login service.
+
+ In the request, describe that you need a group for accessing MetaCentrum Cloud and provide the following information:
+* Project/group name
+* Project members
+
+After creating a group, you will be provided with a graphical interface for managing group members within the Perun system.
+And you will be able to make further adjustments to the member list on your own.
diff --git a/content/cloud/tools/index.md b/content/cloud/tools/index.md
new file mode 100644
index 0000000000000000000000000000000000000000..24a5fe06559417f50a23b43ebf6bb234cd68631a
--- /dev/null
+++ b/content/cloud/tools/index.md
@@ -0,0 +1,7 @@
+---
+title: "Cloud Tools"
+date: 2021-05-18T11:22:35+02:00
+draft: false
+---
+
+On this address [https://gitlab.ics.muni.cz/cloud/cloud-tools](https://gitlab.ics.muni.cz/cloud/cloud-tools) you can find a docker container with all modules required for cloud management, if you are interested in managing your cloud platform via CLI. If so, you can check our guide how to use CLI cloud interface [here](https://cloud.gitlab-pages.ics.muni.cz/documentation/cli/).
\ No newline at end of file
diff --git a/content/cloud/windows/index.md b/content/cloud/windows/index.md
new file mode 100644
index 0000000000000000000000000000000000000000..7218f34ecd4ffc3895dbfe0a69df62605d6449cf
--- /dev/null
+++ b/content/cloud/windows/index.md
@@ -0,0 +1,22 @@
+---
+title: "Accessing Windows instance"
+date: 2021-05-18T11:22:35+02:00
+draft: false
+---
+
+
+Windows host system allows RDP access allowed for `Administrators` group. By default there are two users in this group: 
+- Admin - the password for this account is defined by `admin_pass` OpenStack instance metadata, if no value is entered for this key, random password is generated. (could be used for orchestartion).
+- Administrator - the password must be filled after instantiation of the system.
+
+The next step is to create a security group, that will allow access to a port `3389` ([RDP protocol](https://en.wikipedia.org/wiki/Remote_Desktop_Protocol)) for the instance. 
+
+We recommend disabling those accounts, creating new ones in order to administer Windows instance in any production environment.
+
+
+# Licensing 
+- We are not currently supporting Windows licensing. License responsibility for Windows is entirely up to the user.
+
+# Advanced users
+- You may use all features of [cloudbase-init](https://cloudbase.it/cloudbase-init/) for Windows.
+- Windows Server [hardening guidelines](https://security.uconn.edu/server-hardening-standard-windows/).
\ No newline at end of file
diff --git a/content/news.md b/content/news.md
deleted file mode 100644
index 1f16cfb3791a83caf6c113f9739bf451d8255474..0000000000000000000000000000000000000000
--- a/content/news.md
+++ /dev/null
@@ -1,41 +0,0 @@
----
-title: "News"
-date: 2021-05-18T11:22:35+02:00
-draft: false
----
-
-
-**2021-05-21** Flavor list was created and published. Also parameters of following flavors were changed:
-
-* hpc.8core-64ram
-* hpc.8core-16ram
-* hpc.16core-32ram
-* hpc.18core-48ram
-* hpc.small
-* hpc.medium
-* hpc.large
-* hpc.xlarge
-* hpc.xlarge-memory
-* hpc.16core-128ram
-* hpc.30core-64ram
-* hpc.30core-256ram
-* hpc.ics-gladosag-full
-* csirtmu.tiny1x2
-
-None of the parameters were decreased but increased. Updated parameters were Net througput, IOPS and Disk througput. Existing instances will have the previous parameters so if you want to get new parameters, **make a data backup** and rebuild your instance  You can check list of flavors [here](/flavors/README.md).
-
-**2021-04-13** OpenStack image `centos-8-1-1911-x86_64_gpu` deprecation in favor of `centos-8-x86_64_gpu`. Deprecated image will be still available for existing VM instances, but will be moved from public to community images in about 2 months.
-
-**2021-04-05** OpenStack images renamed
-
-**2021-03-31** User documentation update
-
-**2020-07-24** Octavia service (LBaaS) released
-
-**2020-06-11** [Public repository](https://gitlab.ics.muni.cz/cloud/cloud-tools) where Openstack users can find usefull tools
-
-**2020-05-27** Openstack was updated from `stein` to `train` version
-
-**2020-05-13** Ubuntu 20.04 LTS (Focal Fossa) available in image catalog
-
-**2020-05-01** Released [Web page](https://projects.cloud.muni.cz/) for requesting Openstack projects