I am currently trying to migrate our old sameersbn/gitlab:12.1.6 installation to a new Gitlab instance set up with the helm chart.
The easiest way seems to enable the s3 backup capability on the old installation, connect the new instance to the same s3 and restore it from there.
Currently I am stuck with correctly configuring the old installation. I set a bunch of environment variables on the docker container and expected this to work out of the box.
-e "AWS_BACKUPS=true" \
-e "AWS_BACKUP_MULTIPART_CHUNK_SIZE=500" \
-e "AWS_BACKUP_ACCESS_KEY_ID=minio" \
-e "AWS_BACKUP_SECRET_ACCESS_KEY=minio" \
-e "AWS_BACKUP_REGION=main" \
-e "AWS_BACKUP_BUCKET=gitlab-backup-storage" \
-e "AWS_BACKUP_ENDPOINT=https://minio.com"
But it doesn't. I couldn't see any errors in the docker logs, so I checked the /var/log/gitlab
folder with no success. Some other logs, but none indicate whether the backup started/succeeded/failed and I cannot see any backups in the s3 bucket.
Now I don't know where to look and what to check.