How Will You Use Image Volumes in Kubernetes v1.33?

0
5
Asked By TechSavvyNinja42 On

With the release of Kubernetes v1.33, Image Volumes have moved to beta, allowing you to mount OCI artifacts, such as models, configurations, and tools, into pods as read-only volumes. This update includes new features like `subPath`, kubelet metrics, and improved runtime compatibility. I'm really interested to hear how others plan to apply this feature in their actual workloads!

5 Answers

Answered By FileServerFanatic On

Wouldn't you typically serve this data through a standard PV/PVC setup? File servers excel at delivering files, and I'm having a hard time spotting a strong use case for OCI volumes— I wouldn't want bulky data to bloat my source control.

Answered By CI_Dynamo On

Using OCI artifacts is a smart approach! It allows you to distribute various types of data. For example, in my homelab, I have a CI setup that pulls DNS records from Cloudflare and generates related files. Mounting the OCI volume simplifies updates and trades in the benefits of an OCI setup, like SBOM and versioning.

Answered By HobbyistCoder76 On

I play around with LLM workloads on my homelab. Managing model size can be tricky; right now, I sync models directly with NFS on my two GPU nodes. The idea of handling a 300+GB image without packing it all together sounds way more manageable!

Answered By DataGuru99 On

Wow, decoupling blobs from business logic sounds promising! I see it being really useful for large Hadoop applications and ML models. Would love to hear how others are adapting their Kubernetes setups for such workloads. Especially, I'm curious about experiences with large images.

Answered By CloudWhisperer88 On

Image Volumes are a game changer for me! They let you separate your core code from additional files, which is great for LLMs, plugins, or static assets. Just keep in mind that this feature requires the upcoming containerd 2.1 release. Currently, it's still new with cri-o, and many managed clusters are on containerd 1.7.x, so it might take time before it's widely usable.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.