this post was submitted on 11 Nov 2025
14 points (100.0% liked)

Linux Gaming

22028 readers
229 users here now

Discussions and news about gaming on the GNU/Linux family of operating systems (including the Steam Deck). Potentially a $HOME away from home for disgruntled /r/linux_gaming denizens of the redditarian demesne.

This page can be subscribed to via RSS.

Original /r/linux_gaming pengwing by uoou.

No memes/shitposts/low-effort posts, please.

Resources

WWW:

Discord:

IRC:

Matrix:

Telegram:

founded 2 years ago
MODERATORS
 

Hi all, I'm looking for useful scripts for deploying game servers to the cloud. Some games for example could be Valheim, Palworld, Project Zomboid, Space Engineers, Minecraft.

I'm looking for anything really. Thanks!

you are viewing a single comment's thread
view the rest of the comments
[–] just_another_person@lemmy.world 2 points 12 hours ago (1 children)

Use Terraform + Cloudinit scripts if you're using a cloud platform, and make sure you version everything or use Packer to make versioned images.

[–] dudesss@lemmy.ca 1 points 11 hours ago (1 children)

Cloudinit and Packer look similar to OpenTofu and Terraform. Thanks!

How does Packer differ from the other three?

[–] just_another_person@lemmy.world 1 points 6 hours ago* (last edited 6 hours ago)

Opentofu is Terraform 🤣 I generally don't throw that out there to prevent confusing people, but I prefer it, honestly.

Packer builds images you can upload to cloud platforms.

Terraform/Opentofu executes API calls to orchestrate spinning things up and down.

Cloudinit is the native built-in bootstrap framework of instances themselves that all the major cloud providers support. It's what executes as "userdata" as some call it. Check your cloud provider docs for how to hook it in.