2021-03-31 02:07:10 +02:00
|
|
|
# Testing the installer
|
|
|
|
|
|
|
|
Zulip's install process is tested as part of [its continuous
|
2021-08-20 22:54:08 +02:00
|
|
|
integrations suite][ci], but that only tests the most common
|
2021-03-31 02:07:10 +02:00
|
|
|
configurations; when making changes to more complicated [installation
|
|
|
|
options][installer-docs], Zulip provides tooling to repeatedly test
|
|
|
|
the installation process in a clean environment each time.
|
|
|
|
|
2021-08-20 22:54:08 +02:00
|
|
|
[ci]: https://github.com/zulip/zulip/actions/workflows/production-suite.yml?query=branch%3Amain
|
2021-03-31 02:07:10 +02:00
|
|
|
[installer-docs]: ../production/install.md
|
|
|
|
|
|
|
|
## Configuring
|
|
|
|
|
|
|
|
Using the test installer framework requires a Linux operating system;
|
2021-08-20 21:53:28 +02:00
|
|
|
it will not work on WSL, for instance. It requires at least 3G of
|
2021-03-31 02:07:10 +02:00
|
|
|
RAM, in order to accommodate the VMs and the steps which build the
|
|
|
|
release assets.
|
|
|
|
|
|
|
|
To begin, install the LXC toolchain:
|
2021-08-20 22:54:08 +02:00
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```bash
|
2021-03-31 02:07:10 +02:00
|
|
|
sudo apt-get install lxc lxc-utils
|
|
|
|
```
|
|
|
|
|
|
|
|
All LXC commands (and hence many parts of the test installer) will
|
|
|
|
need to be run as root.
|
|
|
|
|
|
|
|
## Running a test install
|
|
|
|
|
|
|
|
### Build and unpack a release tarball
|
|
|
|
|
|
|
|
You only need to do this step once per time you work on a set of
|
|
|
|
changes, to refresh the package that the installer uses. The installer
|
|
|
|
doesn't work cleanly out of a source checkout; it wants a release
|
|
|
|
checkout, so we build a tarball of one of those first:
|
2021-08-20 22:54:08 +02:00
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```bash
|
2021-03-31 02:07:10 +02:00
|
|
|
./tools/build-release-tarball test-installer
|
|
|
|
```
|
|
|
|
|
|
|
|
This will produce a file in /tmp, which it will print out the path to
|
|
|
|
as the last step; for example,
|
|
|
|
`/tmp/tmp.fepqqNBWxp/zulip-server-test-installer.tar.gz`
|
|
|
|
|
|
|
|
Next, unpack that file into a local directory; we will make any
|
|
|
|
changes we want in our source checkout and copy them into this
|
|
|
|
directory. The test installer needs the release directory to be named
|
2021-08-20 21:53:28 +02:00
|
|
|
`zulip-server`, so we rename it and move it appropriately. In the
|
2021-03-31 02:07:10 +02:00
|
|
|
first line, you'll need to substitute the actual path that you got for
|
|
|
|
the tarball, above:
|
2021-08-20 22:54:08 +02:00
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```bash
|
2021-03-31 02:07:10 +02:00
|
|
|
tar xzf /tmp/tmp.fepqqNBWxp/zulip-server-test-installer.tar.gz
|
|
|
|
mkdir zulip-test-installer
|
|
|
|
mv zulip-server-test-installer zulip-test-installer/zulip-server
|
|
|
|
```
|
|
|
|
|
|
|
|
You should delete and re-create this `zulip-test-installer` directory
|
|
|
|
(using these steps) if you are working on a different installer
|
|
|
|
branch, or a significant time has passed since you last used it.
|
|
|
|
|
|
|
|
### Test an install
|
|
|
|
|
|
|
|
The `test-install` tooling takes a distribution release name
|
2021-11-08 22:12:57 +01:00
|
|
|
(e.g. "focal"), the path to an unpacked release directory
|
2021-03-31 02:07:10 +02:00
|
|
|
or tarball, and then any of the normal options you want to pass down
|
|
|
|
into the installer.
|
|
|
|
|
|
|
|
For example, to test an install onto Ubuntu 20.04 "Focal", we might
|
|
|
|
call:
|
2021-08-20 22:54:08 +02:00
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```bash
|
2021-03-31 02:07:10 +02:00
|
|
|
sudo ./tools/test-install/install \
|
|
|
|
-r focal \
|
|
|
|
./zulip-test-installer/ \
|
|
|
|
--hostname=zulip.example.net \
|
|
|
|
--email=username@example.net
|
|
|
|
```
|
|
|
|
|
|
|
|
The first time you run this command for a given distribution, it will
|
|
|
|
build a "base" image for that to use on subsequent times; this will
|
|
|
|
take a while.
|
|
|
|
|
|
|
|
### See running containers after installation
|
|
|
|
|
|
|
|
Regardless of if the install succeeds or fails, it will stay running
|
|
|
|
so you can inspect it. You can see all of the containers which are
|
|
|
|
running, and their randomly-generated names, by running:
|
2021-08-20 22:54:08 +02:00
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```bash
|
2021-03-31 02:07:10 +02:00
|
|
|
sudo lxc-ls -f
|
|
|
|
```
|
|
|
|
|
|
|
|
### Connect to a running container
|
|
|
|
|
|
|
|
After using `lxc-ls` to list containers, you can choose one of them
|
|
|
|
and connect to its terminal:
|
2021-08-20 22:54:08 +02:00
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```bash
|
2021-03-31 02:07:10 +02:00
|
|
|
sudo lxc-attach --clear-env -n zulip-install-focal-PUvff
|
|
|
|
```
|
|
|
|
|
|
|
|
### Stopping and destroying containers
|
|
|
|
|
|
|
|
To destroy all containers (but leave the base containers, which speed
|
|
|
|
up the initial install):
|
2021-08-20 22:54:08 +02:00
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```bash
|
2021-03-31 02:07:10 +02:00
|
|
|
sudo ./tools/test-install/destroy-all -f
|
|
|
|
```
|
|
|
|
|
|
|
|
To destroy just one container:
|
2021-08-20 22:54:08 +02:00
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```bash
|
2021-03-31 02:07:10 +02:00
|
|
|
sudo lxc-destroy -f -n zulip-install-focal-PUvff
|
|
|
|
```
|
|
|
|
|
|
|
|
### Iterating on the installer
|
|
|
|
|
|
|
|
Iterate on the installer by making changes to your source tree,
|
|
|
|
copying them into the release directory, and re-running the installer,
|
|
|
|
which will start up a new container. Here, we update just the
|
|
|
|
`scripts` and `puppet` directories of the release directory:
|
2021-08-20 22:54:08 +02:00
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```bash
|
2021-03-31 02:07:10 +02:00
|
|
|
rsync -az scripts puppet zulip-test-installer/zulip-server/
|
|
|
|
|
|
|
|
sudo ./tools/test-install/install \
|
|
|
|
-r focal \
|
|
|
|
./zulip-test-installer/ \
|
|
|
|
--hostname=zulip.example.net \
|
|
|
|
--email=username@example.net
|
|
|
|
```
|