Mohammed Naser | daf1bee | 2022-03-14 19:57:15 -0400 | [diff] [blame] | 1 | Quickstart |
| 2 | ========== |
| 3 | |
| 4 | The quick start intends to provide the most near-production experience possible, |
| 5 | as it is architected purely towards production-only environments. In order to |
| 6 | get a quick production-ready experience of Atmosphere, you will need access to |
| 7 | an OpenStack cloud. |
| 8 | |
| 9 | The quick start is powered by Molecule and it is used in continuous integration |
| 10 | running against the VEXXHOST public cloud so that would be an easy target to |
| 11 | use to try it out. |
| 12 | |
| 13 | You will need the following quotas set up in your cloud account: |
| 14 | |
| 15 | * 8 instances |
| 16 | * 32 cores |
| 17 | * 128GB RAM |
| 18 | * 360GB storage |
| 19 | |
| 20 | These resources will be used to create a total of 8 instances broken up as |
| 21 | follows: |
| 22 | |
| 23 | * 3 Controller nodes |
| 24 | * 3 Ceph OSD nodes |
| 25 | * 2 Compute nodes |
| 26 | |
| 27 | First of all, you'll have to make sure you clone the repository locally to your |
| 28 | system with ``git`` by running the following command:: |
| 29 | |
| 30 | $ git clone https://opendev.org/vexxhost/ansible-collection-atmosphere |
| 31 | |
| 32 | You will need ``tox`` installed on your operating system, you can simply make |
| 33 | sure that you have the appropriate OpenStack environment variables set (such |
| 34 | as ``OS_CLOUD`` or ``OS_AUTH_URL``, etc.) and then you can run the following |
| 35 | command:: |
| 36 | |
| 37 | $ tox -e molecule -- converge |
| 38 | |
| 39 | This will create a Heat stack with the name ``atmosphere`` and start deploying |
| 40 | the cloud. Once it's complete, you can login to any of the systems by using |
| 41 | the ``login`` sub-command. For exampel, to login to the first controller node, |
| 42 | you can run the following:: |
| 43 | |
| 44 | $ tox -e molecule -- login -h ctl1 |
| 45 | |
| 46 | In all the controllers, you will find an ``openrc`` file location inside the |
| 47 | ``root`` account home directory, as well as the OpenStack client installed there |
| 48 | as well. You can use it by running the following after logging in:: |
| 49 | |
| 50 | $ source /root/openrc |
| 51 | $ openstack server list |
| 52 | |
| 53 | The Kubernetes administrator configuration will also be available on all of the |
| 54 | control plane nodes, you can simply use it by running ``kubectl`` commands on |
| 55 | any of the controllers as ``root``:: |
| 56 | |
| 57 | $ kubectl get nodes -owide |
| 58 | |
| 59 | Once you're done with your environment and you need to tear it down, you can |
| 60 | use the ``destroy`` sub-command:: |
| 61 | |
| 62 | $ tox -e molecule -- destroy |
| 63 | |
| 64 | For more information about the different commands used by Molecule, you can |
| 65 | refer to the Molecule documentation. |