blob: a0c12d9c087241b2801853640fb7b7d0ce912e85 [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
Michiel Piscaer97b7fd32022-03-17 12:15:21 +010032.. note::
33 There is a `current issue <https://github.com/ansible-community/molecule/pull/3225>`_
34 in Molecule where it fails to resolve playbooks based on their fully qualified
35 collection name (FQCN). The workaround for this time is to make a maunal
36 symbolic link to workaround it::
37
38 $ mkdir -p $HOME/.ansible/collections/ansible_collections/vexxhost
39 $ ln -s ansible-collection-atmosphere $HOME/.ansible/collections/ansible_collections/vexxhost/atmosphere
40
41 You'll have to make sure you replace ``ansible-collection-atmosphere`` with
42 the path to where you cloned the repository.
43
44You will need ``tox`` installed on your operating system. You will need to make
Mohammed Naserdaf1bee2022-03-14 19:57:15 -040045sure that you have the appropriate OpenStack environment variables set (such
Michiel Piscaer97b7fd32022-03-17 12:15:21 +010046as ``OS_CLOUD`` or ``OS_AUTH_URL``, etc.). You can also use the following
47environment variables to tweak the behaviour of the Heat stack that is created:
48
49``ATMOSPHERE_STACK_NAME``
50 The name of the Heat stack to be created (defaults to ``atmosphere``).
51
52``ATMOSPHERE_PUBLIC_NETWORK``
53 The name of the public network to attach floating IPs from (defaults to
54 ``public``).
55
56``ATMOSPHERE_IMAGE``
57 The name or UUID of the image to be used for deploying the instances (
58 defaults to ``Ubuntu 20.04.3 LTS (x86_64) [2021-10-04]``).
59
60``ATMOSPHERE_INSTANCE_TYPE``
61 The instance type used to deploy all of the different instances (defaults
62 to ``v3-standard-4``).
63
64``ATMOSPHERE_NAMESERVERS``
65 A comma-separated list of nameservers to be used for the instances (defaults
66 to `1.1.1.1`).
67
68``ATMOSPHERE_USERNAME``
69 The username what is used to login into the instances (defaults to ``ubuntu``).
70
71Once you're ready to get started, you can run the following command to build
72the Heat stack and ::
Mohammed Naserdaf1bee2022-03-14 19:57:15 -040073
74 $ tox -e molecule -- converge
75
76This will create a Heat stack with the name ``atmosphere`` and start deploying
77the cloud. Once it's complete, you can login to any of the systems by using
78the ``login`` sub-command. For exampel, to login to the first controller node,
79you can run the following::
80
81 $ tox -e molecule -- login -h ctl1
82
83In all the controllers, you will find an ``openrc`` file location inside the
84``root`` account home directory, as well as the OpenStack client installed there
85as well. You can use it by running the following after logging in::
86
87 $ source /root/openrc
88 $ openstack server list
89
90The Kubernetes administrator configuration will also be available on all of the
91control plane nodes, you can simply use it by running ``kubectl`` commands on
92any of the controllers as ``root``::
93
94 $ kubectl get nodes -owide
95
96Once you're done with your environment and you need to tear it down, you can
97use the ``destroy`` sub-command::
98
99 $ tox -e molecule -- destroy
100
101For more information about the different commands used by Molecule, you can
Michiel Piscaer97b7fd32022-03-17 12:15:21 +0100102refer to the Molecule documentation.