Gitlab, configurar backups automaticos

Para configuración de los backups de Gitlab y que se ejecuten de forma automática, es necesario configurar crons de GNU/Linux para que ejecuten las tareas en la hora y la frecuencia deseada.

Los comandos son los siguientes para configurar o cambiar la generación de respaldos en Gitlab en Ubuntu Server.

Entramos como súper usuario:

  • sudo su -

Abrimos el editor de los jobs(crons) que se ejecutaran:

  • crontab -e

Seleccionamos el editor de nuestra preferencia, se recomienda seleccionar NANO que es la opción numero 2, por ser mas sencillo.

Agregamos la siguiente linea al final del archivo.

  • 1 22 * * * /opt/gitlab/bin/gitlab-rake gitlab:backup:create CRON=1

Recordemos que la configuración de los crons tiene la siguiente estructura.

| minutos | horas | días | meses | años.

En nuestro caso elegimos que corra a las 10:01 pm todos los días.

Si esto se nos hace complejo siempre podremos recurrir a un generador de crons:

http://www.crontab-generator.org/

También debemos respaldar los archivos de secretos de Gitlab, así que agregaremos 2 crons mas.

1 22 * * * cp /etc/gitlab/gitlab.rb /var/opt/gitlab/backups/gitlab.rb.backup.$(date --iso-8601=seconds) CRON=1

1 22 * * * cp /etc/gitlab/gitlab-secrets.json /var/opt/gitlab/backups/gitlab-secrets.json.backup.$(date --iso-8601=seconds) CRON=1

Al final nuestro archivo de crons se debe ver así.


# Edit this file to introduce tasks to be run by cron.

#

# Each task to run has to be defined through a single line

# indicating with different fields when the task will be run

# and what command to run for the task

#

# To define the time you can provide concrete values for

# minute (m), hour (h), day of month (dom), month (mon),

# and day of week (dow) or use '*' in these fields (for 'any').#

# Notice that tasks will be started based on the cron's system

# daemon's notion of time and timezones.

#

# Output of the crontab jobs (including errors) is sent through

# email to the user the crontab file belongs to (unless redirected).

#

# For example, you can run a backup of all your user accounts

# at 5 a.m every week with:

# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/

#

# For more information see the manual pages of crontab(5) and cron(8)

#

# m h  dom mon dow   command


## Generacion del resplado de gitlab todos los dias a las 10 pm(22 horas)

## Ver la documentacion https://gitlab.com/gitlab-org/gitlab-ci/blob/master/doc/raketasks/backup_restore.md

1 22 * * * /opt/gitlab/bin/gitlab-rake gitlab:backup:create CRON=1

1 22 * * * cp /etc/gitlab/gitlab.rb /var/opt/gitlab/backups/gitlab.rb.backup.$(date --iso-8601=seconds) CRON=1

1 22 * * * cp /etc/gitlab/gitlab-secrets.json /var/opt/gitlab/backups/gitlab-secrets.json.backup.$(date --iso-8601=seconds) CRON=1

Podemos encontrar la ejecución de los crons con el siguiente comando:

grep CRON /var/log/syslog

Fuentes: