Selfhosting GitLab?
from shaserlark@sh.itjust.works to selfhosted@lemmy.world on 23 Nov 13:12
https://sh.itjust.works/post/28508661

I’ve started building a small decentralized, non commercial app with a Rust backend + Node.js frontend running on k8s. I would have my own dedicated server for this. Just mentioning the setup because it might grow and for git there seem to be only GitHub and GitLab around and I prefer GitLab.

I care a lot about security and was wondering if it makes sense to self-host GitLab. I‘m not afraid of doing it, but after setup it shouldn’t take more than 1-2 hours per week for me to maintain it in the long run and I’m wondering if that’s realistic.

Would love to hear about the experience of people who did what I’m planning to do.

EDIT: Thanks for all the answers, trying my best to reply. I want CI/CD, container registry and secrets management that’s what I was hoping to get out of GitLab.

#selfhosted

threaded - newest

just_another_person@lemmy.world on 23 Nov 13:24 next collapse

I remember Gitlab requiring quite a large amount of resources, so if you’re talking about a solo project, I’d skip it and go with something a lot leaner like Gitea, personally.

I’ve never had any security issues with GitHub in the past though, and extended features are free for open source projects, so it’s kind of hard to ignore.

l_b_i@pawb.social on 23 Nov 13:23 next collapse

For self hosting there is also forgejo.org which is a fork of about.gitea.com , the latter of which started to shift to a corporate model.

BaalInvoker@lemmy.eco.br on 23 Nov 13:26 next collapse

The is also Codeberg

neshura@bookwormstory.social on 23 Nov 13:56 collapse

technically the same as forgejo, codeberg is the main forgejo contributor/the org owning it

BlastboomStrice@mander.xyz on 23 Nov 14:29 next collapse

Quick question: forgejo is the git program that you can install self host a git server, while codeberg is probably the biggest forgejo-kind git server that is open to the public, right?

I dont have a home server to host forgejo (yet?), so I’m thinking of making an account on codeberg, is that correct reasoning?

neshura@bookwormstory.social on 23 Nov 14:33 next collapse

Pretty much yes, codeberg integrates some additional services and branding on top (such as codeberg-pages for static page hosting or forgejo-runners for CI) but you can integrate those yourself as well, it’s just extra work.

If you’re looking for an open alternative to github/gitlab codeberg is imo definitely the way to go

BlastboomStrice@mander.xyz on 23 Nov 14:38 collapse

Yo thank youu:)

scsi@scribe.disroot.org on 23 Nov 14:44 collapse

If you own a domain, hosting Forgejo on a $5 Debian cloud server works perfectly for your personal use case. My site admin panel shows it’s using 75MB of actual RAM (not allocated/virtual), it’s truly very lightweight. Disk use is very low, just however big your git repos actually are is the key.

The internal SQlite database option is just fine, don’t need to bother with PostgreSQL if you’re only doing it for yourself (the DB only holds referential info, the actual git data is stored on disk in normal git directories). There’s a built in backup command so you can build a simple shell script to run the dump command periodically and back up the entire thing to a tarball.

re: Codeberg, the only “downside” (not really) is they are for FOSS licensed projects only and frown upon using their service for your personal private non FOSS needs (they’re not draconian about it, but it’s part of the ethos the service is for FOSS licensed projects to use).

BlastboomStrice@mander.xyz on 23 Nov 14:52 collapse

Oh thank you for the detailed answer😄

I think codeberg is for me in my case. (Btw, I barely know git, I’m gonna read a guide today.) I really like foss, so I will probably create foss stuff.

I really want to make a nas in the future, so I might host my own forgejo instance locally and possibly keep a backup on a cloud storage provider (bought 2tb lifetime on filen). I have somewhat big plans for my nas, but I don’t know what I’ll eventually do😆

So far I barely use git, so I probably dont need to rent a cloud server. Thanks again though:)

scsi@scribe.disroot.org on 23 Nov 15:18 collapse

Suggestion: start learning git by using your $HOME config files as the first thing you learn how to manage; mentally easy to understand, low friction and just basic git commands needed. One of the most popular repo names we all use is dotfiles so you have plenty of examples to learn from: codeberg.org/explore/repos?q=dotfiles

BlastboomStrice@mander.xyz on 23 Nov 15:21 collapse

Yeah, (among others) I really want to learn git to sync dotfiles and the nixos configs

(Hopefully I’ll probably have tranitioned to nixos in a few months. If I get good enough and somehow build a nas, I might use nixos instead of debian in the server too.)

BaalInvoker@lemmy.eco.br on 23 Nov 15:21 collapse

Oh! Is it?

Well, living and learning haha

alwayssitting@infosec.pub on 23 Nov 13:27 next collapse

Previous Gitea user and now Forgejo, and yeah it’s a great git server. Simple, lightweight but still very capable.

scrubbles@poptalk.scrubbles.tech on 23 Nov 17:27 next collapse

Another upvote for forgeo. So easy to get set up and running. Can run it in docker itself. I tried to host gitlab and got so frustrated with the pages and pages of ruby configs. Forgejo is so much cleaner.

Lem453@lemmy.ca on 23 Nov 18:01 next collapse

I did an inplace upgrade of gitea to forgejo. No issues.

I’ve been self hosting this for 2 or 3 years now.

There has been zero maintenance other than the occasional update button

I use it for my docker compose files that portainer pulls from with the click of the button to update my containers when needed.

I edit the files in VS code with the git plugin and it works without issue

Eezyville@sh.itjust.works on 24 Nov 03:44 next collapse

I’d also like to add that Forgejo is working on federation along with GitLab. I think Forgejo will do it first though.

shaserlark@sh.itjust.works on 24 Nov 19:40 collapse

Thanks! This looks actually really interesting. Did you try doing CI/CD with it? In future I would probably collaborate with others who’d be also using my self-hosted Git. What would be critical for me is that I can set it up in a way that once I open a PR that branch automatically gets deployed to a dev Kubernetes environment and when I merge with main that it automatically deploys to staging and only when I release a tag the branch would end up in prod. Also I’d like to do secrets management over the platform. I like that Forgejo would be non-commercial and I would prefer it over GitLab if it can do these things well.

kensand@sopuli.xyz on 23 Nov 13:28 next collapse

I tried hosting Gitlab for a while, but configuration and upgrades were difficult, and your really have to stay on top of updates due to vulnerabilities. It also used a lot of resources and wasn’t super responsive.

I moved to Forgejo (a hard fork of Gitea), and haven’t looked back; I cant recommend it enough. It’s fast, doesn’t take a lot of resources, actively developed, and has all the features I need.

Codeberg is a public instance of Forgejo if you want to try it out first.

BrianTheeBiscuiteer@lemmy.world on 23 Nov 14:16 next collapse

It’s not fully selfhosted but I did setup my own runner that integrates with their site.

shaserlark@sh.itjust.works on 24 Nov 19:43 collapse

Thanks! May I ask what kind of setup you were running and if there’s any feature you might be missing that existed in GitLab but doesn’t in Forgejo?

kensand@sopuli.xyz on 25 Nov 18:54 collapse

I was on an old repurposed desktop with 16gb ram and a i7 6700k at the time.

I haven’t felt that I’ve been missing any features from Gitlab. I do use Woodpecker-CI for runners because Forgejo action’s weren’t working for Docker builds, but I think the Forgejo actions have come a long way since I made that decision; I’ll have to try them out again one of these days.

interurbain1er@sh.itjust.works on 23 Nov 14:13 next collapse

First question is why do you want a forge ? Knowing the feature you need out of it is what should drive your decision.

Personally I would question the benefit of allocating ~5% of your work time to anything that isn’t core building your product but that’s up to you.

WalnutLum@lemmy.ml on 23 Nov 14:41 next collapse

Yea a surprisingly small number of people don’t know a git remote can literally be any folder outside of your tree, over almost any kind of connection.

I thought about doing a forge but realized that if I was the only one working on this stuff then I could do the same thing by setting my remote to a folder on my NAS.

interurbain1er@sh.itjust.works on 23 Nov 17:44 collapse

Yup, for a solo project that you don’t want to share I would even argue that a forge is close to pointless.

Any ssh remote will work as a backup, you can run the ci/cd task on your own computer just fine (very likely faster even), you obviously don’t need to send PR and request code review to yourself and if a TODO.md isn’t enough to keep track of tasks there’s a billions lightweight task/note tracker.

I use github because I’m a lazy and it works fine as a backup but I don’t need 99% of the features for my pet projects.

shaserlark@sh.itjust.works on 24 Nov 19:55 collapse

I would deploy the whole app over k8s Helm charts and I would want to use the CI/CD tools and also do Traefik/Ingress for load balancing and having cloudflare point at it. In the future I might be collaborating with other people so I would want the architecture to be solid.

scottmeme@sh.itjust.works on 23 Nov 16:35 next collapse

I run GitLab with docker compose and watchtower, all the updates are automated and have never caused any issues for me.

That being said my setup uses about 7-8gb of ram.

[deleted] on 24 Nov 20:19 next collapse

.

shaserlark@sh.itjust.works on 24 Nov 20:21 collapse

Thanks! What about CPU usage, how many CPUs did you assign to the environment you run the container in?

scottmeme@sh.itjust.works on 25 Nov 01:32 collapse

The VM is a 6 thread 16gb

OS is currently Ubuntu 22.04.5 LTS (cloud image which is lightweight) just running a very simple docker engine install using the script (plus a few other options since I script the install)

The load averages as of this current moment are 0.12, 0.15, 0.10 so not even a full thread is being used.

I let the container run unmetered on the CPU and memory.

I can provide both the compose and my install script (which is on the GitLab instance) if you are curious.

shaserlark@sh.itjust.works on 25 Nov 02:07 collapse

Thanks! Super helpful and I’d love to have the compose and install script. I also looked into the Helm charts but still wondering if I should go down that route or not eventually.

scottmeme@sh.itjust.works on 25 Nov 23:21 collapse

Incoming wall of text

Here is my install script to set up Ubuntu since it has a bit of extra steps for privileged ports gitlab.meme.beer/-/snippets/1

Docker compose example, note that my config has a shared network with containers in another compose called nginx to keep traffic inside docker.

name: "gitlab"
services:
  gitlab:
    image: 'gitlab/gitlab-ce:latest'
    #command: update-permissions
    restart: always
    hostname: 'gitlab.example.com'
    environment:
      GITLAB_OMNIBUS_CONFIG: |
        external_url 'https://gitlab.example.com'

        pages_external_url 'https://pages.example.com'
        pages_nginx['enable'] = true
        pages_nginx['listen_port'] = 6000
        pages_nginx['listen_https'] = false
        pages_nginx['redirect_http_to_https'] = false

        #puma['per_worker_max_memory_mb'] = 2048 # 2GB

        gitlab_rails['gitlab_email_from'] = 'gitlab@mailer.example.com'
        gitlab_rails['gitlab_email_display_name'] = 'GitLab'
        gitlab_rails['smtp_enable'] = true
        gitlab_rails['smtp_address'] = "smtp.sendgrid.net"
        gitlab_rails['smtp_port'] = 587
        gitlab_rails['smtp_user_name'] = 'apikey'
        gitlab_rails['smtp_password'] = '$SENDGRID_API_KEY_HERE'
        gitlab_rails['smtp_domain'] = "smtp.sendgrid.net"
        gitlab_rails['smtp_authentication'] = "login"
        gitlab_rails['smtp_enable_starttls_auto'] = true
        gitlab_rails['smtp_tls'] = false

        gitlab_rails['gitlab_default_theme'] = 2

        gitlab_rails['gitlab_shell_ssh_port'] = 2224

        gitlab_rails['gitlab_default_projects_features_container_registry'] = true
        gitlab_rails['registry_enabled'] = true
        gitlab_rails['registry_api_url'] = 'https://registry.example.com'
        gitlab_rails['registry_issuer'] = 'gitlab-issuer'
        registry['log_level'] = 'info'
        registry_external_url 'https://registry.example.com'
        registry_nginx['enable'] = true
        registry_nginx['listen_port'] = 5050
        registry_nginx['listen_https'] = false
        registry_nginx['redirect_http_to_https'] = false

        gitlab_shell['log_level'] = 'INFO'
        letsencrypt['enable'] = false
        nginx['error_log_level'] = 'info'
        nginx['listen_https'] = false
        #nginx['proxy_protocol'] = true
        #nginx['trusted_proxies'] = ["10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]

        # Workhorse
        gitlab_workhorse['enable&#
astrsk@fedia.io on 23 Nov 16:58 next collapse

What are the features you need from your host? If it’s just remote syncing, why not just make a small Debian system and install git on it? You can manage security on the box itself. Do you need the overhead of gitlab at all?

I say this because I did try out hosting my own GitLab, GitTea, Cogs, etc and I just found I never needed any of the features. The whole point was to have a single remote that can be backed up and redeployed easily in disaster situations but otherwise all my local work just needed simple tracking. I wrote a couple scripts so my local machine can create new repos remotely and I also setup ssh key on the remote machine.

I don’t have a complicated setup, maybe you do, not sure. But I didn’t need the integrated features and overhead for solo self hosting.

For example, one of my local machine scripts just executes a couple commands on the remote to create a new folder, cd into it, and then run git init —bare then I can just clone the new project folder on the local machine and get started.

shaserlark@sh.itjust.works on 24 Nov 19:47 collapse

I would actually want to use it to integrate with k8s. I would deploy the app on Kubernetes and do load balancing + pointing at a Cloudflare domain so I would need the whole thing to be solid. I think I do need a lot of the features, but I don’t think I necessarily need to have GitLab if something FOSS could offer the same.

Luckyfriend222@lemmy.world on 23 Nov 19:22 next collapse

I have been maintaining several self-hosted GitLab instances over the past 5 years, and it rarely takes me longer than 20minutes per update.

Their upgrade paths are clearly marked and well thought out. Their packaging methods are of great quality.

You will not regret going with GitLab.

shaserlark@sh.itjust.works on 24 Nov 19:58 collapse

Thank you! I’m running a Servarr over Docker Compose, and have managed some Kubernetes clusters in the past (although poorly tbh). Any idea how complicated that is in comparison? Also, do you use their Helm charts?

Luckyfriend222@lemmy.world on 25 Nov 05:37 collapse

I do straight VM installations unfortunately. I am too stupid for K8s. But seeing how the rest of their stuff is packaged, I suspect you will be fine!

liliumstar@lemmy.dbzer0.com on 24 Nov 03:59 next collapse

Gitlab uses a ton of resources and is a pain to setup. Once you get it going, it’s fine.

Going to echo what others have said: Use Gitea or Forgejo instead if you can. Both have runners you can setup like gitlab, but they instead mimic github actions instead of gitlab ci/cd.

I run a semi-private gitea instance, and have not had any problems past the initial setup in 2+ years.

spechter@lemmy.ml on 23 Nov 13:26 next collapse

I am selfhosting my Gitlab and it’s one of the less troubling services I run.

I followed their documentation for setup and update gitlab biyearly, as far as I remembered I never had to revert to a backup, even after I skipped updates for a little over a year.

shaserlark@sh.itjust.works on 24 Nov 20:16 collapse

Thanks! What resources are you running it on? I’m looking into a VPS that could host it and ChatGPT recommends 4-8 vCPUs and 16 GB Ram, which sounds reasonable. But let’s say I’m running it on k8s does that leave any room for e.g. running other services on the same cluster?

spechter@lemmy.ml on 25 Nov 15:30 collapse

The container itself has been allocated 4 cores and 4 GiB RAM on my PVE host, RAM usage currently sits at 75%. Before I had 2 GiB of RAM allocated, felt like it was slowed down a little bit by running from a HDD then. The host CPU is an i5-9400, so nothing beefy.

Besides Gitlab, I run Home Assistant, a single tenant Nextcloud instance and pfsense on the same host without any troubles. All services combined have 14 GiB Ram allocated, most of that actually goes to HASS since its doing speech recognition and speech synthesis (6GiB)

jimmy90@lemmy.world on 25 Nov 12:12 next collapse

do the front end in Leptos and host it on ForgeJo

shaserlark@sh.itjust.works on 25 Nov 14:39 collapse

I’m intrigued! But how does it compare to React which is pretty straight forward? I’m not a frontend dev so what’s really great about React is that it works super well with LLMs.

jimmy90@lemmy.world on 25 Nov 17:17 collapse

Leptos is very React-like but it’s Rust so it will be Rusty sometimes. you mentioned you’ve done the back end in Rust anyway.

with LLMs do you mean code suggestions like code-pilot or actually integrating with an LLM api?

DieserTypMatthias@lemmy.ml on 25 Nov 05:52 collapse

there seem to be only GitHub and GitLab around

Gitea, Forgejo, and cgit exist

sugar_in_your_tea@sh.itjust.works on 25 Nov 19:02 collapse

And there are others if you look for them.