Skip to content

Pipeline

This guide explains how to set up a GitLab pipeline for your Brezel instance. The pipeline will build and deploy your instance to one or multiple available deployment targets:

  • An Ubuntu/Debian virtual server, using SSH
  • Docker
  • Kubernetes

Virtual Server using SSH

This section assumes you have access to a brezel user via SSH on a virtual server.

1. Generate an SSH keypair

On your local Linux/Unix machine, generate an RSA key pair:

Terminal window
ssh-keygen -b 4096 -C "example@GitLab"

This will output something like:

Terminal window
Generating public/private rsa key pair.
Enter file in which to save the key (/users/saul/.ssh/id_rsa):

Enter the path of the key. The name could be gitlab_rsa.

Terminal window
Enter passphrase (empty for no passphrase):

No passphrase. Hit enter.

Terminal window
Enter same passphrase again:

Hit enter. It will then output something like this:

Terminal window
Your identification has been saved in /users/saul/.ssh/gitlab_rsa.
Your public key has been saved in /users/saul/.ssh/gitlab_rsa.pub.
The key fingerprint is:
SHA256:hcsvjIXxM8ZS16X3IHIoGFwPSHr5Cjw35HOIZMEIW1c example@GitLab
The key's randomart image is:
+---[RSA 4096]----+
|...oo+Eoo . |
| o...oo+ + o o |
|. + * + * = o |
| + = X = o o o |
| = O S .|
| + @ + |
| o o . |
| . |
| |
+----[SHA256]-----+

Authorize the brezel user to access the virtual server via the private key. Login:

Terminal window
ssh brezel@brezel.example.io

Copy the contents of gitlab_rsa.pub and append it to ~/.ssh/authorized_keys:

Terminal window
echo "<PUBLIC KEY>" >> ~/.ssh/authorized_keys

2. Configure GitLab

In GitLab, go to the instance repository, to Settings > CI/CD > Variables and click on Add variable.

KeyValueProtect variable
PRIVATE_KEYContents of your gitlab_rsa private key
PROD_HOSTbrezel.example.io
PROD_PORT22 (222 on Hetzner managed servers)
PROD_USERbrezel
PROD_PATH/var/www/vhosts/brezel.example.io
VITE_APP_API_URLhttps://api.example.brezel.io
VITE_APP_SYSTEMexample

3. Configure your .gitlab-ci.yml

In your repository, there should be a .gitlab-ci.yml.example file. Create the .gitlab-ci.yml file:

Terminal window
cp .gitlab-ci.yml.example .gitlab-ci.yml

Add the file to git:

Terminal window
git add .gitlab-ci.yml

In your .gitlab-ci.yml, uncomment the SSH deployment line:

include:
# - local: 'gitlab/.Docker.gitlab-ci.yml' # Uncomment this for Docker deployment
- local: 'gitlab/.ssh.gitlab-ci.yml' # Uncomment this for SSH deployment

Special case: Plesk

If your deployment target is a server managed by Plesk, then PHP is under a different path. Go to gitlab/.ssh.gitlab-ci.yml and change all occurrences of php in the script: sections to

Terminal window
/opt/plesk/php/7.4/bin/php ...

Keep in mind to also change the paths of composer. If you downloaded composer to ~/bin/composer, the lines should be

Terminal window
/opt/plesk/php/7.4/bin/php ~/bin/composer ...