Longhorn dependencies #3424
-
I have installed kairos-rockylinux-9-standard-amd64-generic-v3.4.2-k0sv1.32.4+k0s.0.iso and now trying to install Longhorn |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @SanekP I think what you see is missing dependencies on the base image. You just need to add what's missing in your Dockerfile. See here for more: https://kairos.io/docs/reference/kairos-factory/ |
Beta Was this translation helpful? Give feedback.
As you found out, different distributions come with different pre-installed packages. We don't test all user scenarios/workloads on all flavors because that would make a very big testing matrix.
To add a a dependency to an image, you don't necessarily need the original Dockerfile. You can just create your own dockerfile and start from the released Kairos image. Just add the dependencies you need on top. Unless your dependencies are needed in the initramfs, you don't need to do anything else (rebuild initramfs etc).
You get different results because you are using the
-master-
artifact. This is building from master and it not stable, it changes whenever we push to master and it's only for t…