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