j0rge

joined 2 years ago
[–] [email protected] 1 points 2 weeks ago

I cannot reconcile

It's like a saving throw in a video game, most times you can make it, but every once in a while you don't lol.

[–] [email protected] 3 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

I don’t understand the answer though.

The answer is if you're depending on software that is closed and out of your control (aka. you have an Nvidia card) then you should have support expectations around that hardware and linux.

There are no GTS ISOs because we don't have a reliable way to make ISOs (the ones we have now are workarounds) but that should be finished soon.

[–] [email protected] 4 points 2 weeks ago* (last edited 2 weeks ago) (4 children)

If you depend on third party modules you'll end up with third party maintenance - we didn't purposely decide to break this we don't work at Nvidia.

[–] [email protected] 17 points 3 weeks ago (1 children)

Do an update, this was an error due to moving over to dnf5.

[–] [email protected] 5 points 1 month ago (1 children)

Heya! I'm one of the ublue maintainers. I run the Project Pavilion at KubeCon, any chance you're going? I love to talk about this stuff in real life! Our project is based on bootc, which is going into sandbox into the CNCF, so there's lots of stuff to talk about!

[–] [email protected] 2 points 1 month ago

Bluefin has even less. I consider this near-zero documentation.

What do you feel is missing from the documentation, can you be specific? You're examples are too generalized to be actionable.

[–] [email protected] 1 points 3 months ago

Awesome, glad it's working for you!

[–] [email protected] 1 points 3 months ago (1 children)

How would you even measure how many are turning away?

How would you recommend anyone measure this? So far the answer has been things like nvidia drivers and "anti-cheat doesn't work", which are things out of our control.

unwilling to cater to those who aren’t

If you don't understand what something is, it may be that you are not the target audience!

Your description as it is now targets tech experts, rather than laypeople

Laypeople don't install operating systems.

You feel justified in being technically correct, while I place more value on accessible descriptions for less technical (prospective) users.

Less technical users don't care and go download the ISO, they don't need to care about any of this.

[–] [email protected] 5 points 3 months ago

I would say it is the methodology. To distill it a bit more in the context of bazzite and universal blue:

  • Focus on automation (we do this via gitops) - everything is driven by git
  • Declarative definitions: all the components of the base images (the kernel, base packages, etc. are all defined up front), and then the custom images (bazzite) do the same thing on top of that. That makes it easier for someone else to start with a small thing and "make my own bazzite" either from scratch, off of a base image, or if you want to just FROM bazzite you can start from there.
  • Iterate fast: basically be able to change anything in the OS and rebuild on the spot locally as fast as possible.
  • Everything is an OCI artifact
[–] [email protected] 9 points 3 months ago* (last edited 3 months ago) (3 children)

Dude, thank you for this. IMO reducing that down to simply “cloud native” is doing a disservice to how absolutely cool that methodology is.

The methodology IS cloud native, we didn't invent this. 😼 People will update their terminology, we're not doing anything new, Linux in infrastructure went through this a decade ago. It's an update in vocabulary because it's a shift away from the traditional distro model and has more in common with the rest of industry (k8s, docker, etc) than a desktop. The desktop is just the payload.

We know some people will complain but whatever, it's our job to help people understand the tech and there are proper definitions for this stuff - The whole "immutables" or whatever slang people are making up doesn't really make sense but we can't control what people think, we can just do our thing and keep pushing out updates.

RancherOS doesn't exist anymore, but a difference here is everything on the machine runs on the metal except whatever workload you have. Here's people who do a way better job explaining it:

Our systems share the same tooling as Fedora CoreOS so this is probably a better example. You can make custom server images -- we build on top of that too, similar to Bazzite but for server nerds: https://github.com/ublue-os/ucore - basically if you can script it, you can make an OS image out of it. Here's bootc upstream where people are hanging out: https://github.com/containers/bootc/discussions

Hope this helps!

[–] [email protected] 22 points 3 months ago* (last edited 3 months ago) (6 children)

Yes, it's a container like an app container you would deploy on docker or kubernetes.

It starts with a dockerfile with a FROM fedora, the difference is there's an entire OS in there, with a kernel and everything. Then an action runs podman build on that container every day, which is then shoved into an OCI registry (in this case ghcr.io).

Then instead of each client doing package updates via a package manager it effectively does the equivalent of a podman pull on your laptop, and then stages the update for deployment on the device. Everything is running on the bare metal on the device, the cloud native part is the build process, pipeline, and delivery. Then rinse and repeat for updates.

It's a bit like rancherOS except using podman.

[–] [email protected] 12 points 3 months ago

Yes, bootc containers are OCI containers, the major difference is there's a kernel in there.

view more: next ›