this post was submitted on 17 Jan 2025
44 points (94.0% liked)

Selfhosted

41172 readers
446 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

In my business, I am very often not allowed to use public clouds because of data privacy reasons. This means, I need to create my own cloud with all the services that are needed to actually work in a IT driven DevOps environment.

Is there a comprehensive list of software, which offer on-prem solutions? It does not have to be open-source or free.

A good example would be some Atlassian software, like Jira, which is available as on-prem version.

you are viewing a single comment's thread
view the rest of the comments
[–] theoli@startrek.website 8 points 2 days ago (1 children)

Do you need a "cloud", as in a programmatic API to access and provision a pile of compute and storage? Or do you mean a "cloud" as in a bunch of locally hosted productivity tools?

The first case, creating a pool of resources with API access to deploy VMs, can be accomplished with something like CloudStack or OpenStack. This is what you would want if you are just handing off compute and storage resources for other teams to provision and deploy software on.

If you are managing internal IT resources and software, especially critical infrastructure like DNS, NTP, virtual routers/firewalls, identity management platforms, then you probably want a a hypervisor solution like Proxmox, or Nutanix or VMware if you have need of the extra features and have the budget for it.

My base infrastructure and productivity suite looks like this:

  • Proxmox + Ceph for hypervisor and storage
  • Red Hat IdM for directory services and PKI
  • Chrony for NTP and Bind for internal/external resolvers
  • Grafana / Prometheus / Loki for metrics and log ingestion, alerting, and dashboards
  • Ansible for configuration management
  • Caddy for edge proxies
  • OPNsense for virtual routers
  • Gitlab for source control and issue tracking, and I abuse scheduled CI/CD a bit as a distributed scheduler
  • Keycloak for SSO auth to hosted apps
  • Outline for wiki
  • Grist for hybrid spreadsheet / database
  • OwnCloud Infinite Scale for document management, integrated with OnlyOffice and Draw.io
  • JetBrains YouTrack for project management
  • Sharry for large file sharing externally
[–] SidewaysHighways@lemmy.world 1 points 2 days ago

Damn this is a great, extensive list! Thanks for your effort