Serdar Yegulalp
Senior Writer

CoreOS harnesses Kubernetes to tame container storage

news analysis
Jun 1, 20163 mins

It's hard to do persistent data right for containerized, distributed apps, but CoreOS has a Kubernetes-based solution

CoreOS, maker of the supertiny Linux distribution for running containers and advocate for better container security, is tackling a major container problem: How do we do persistent storage to containerized apps without tying ourselves in knots?

As a solution, CoreOS has proposed Torus, an open source project that provides storage primitives designed for cloud-native apps and can be deployed like a containerized app via Kubernetes.

Everyone into the pool!

In a blog post released today, CoreOS describes how Torus takes a pool of storage and creates multiple interfaces, with network-accessible block-level storage as one of the defaults.

Torus is deployed by Kubernetes, side by side with the apps to which it provides storage, and it uses Kubernetes’s Flexvolume plugin to allow dynamic mounting of volumes for nodes in the cluster. This allows, for example, PostgreSQL to run atop Torus storage volumes.

coreos torus overview Image courtesy CoreOS

Torus makes a pool of storage available to all containers of a node via existing technologies in the container-orchestration system Kubernetes. Right now, only block storage is available, but other options are meant to be introduced over time.

Torus also demonstrates how CoreOS is working on what happens around containers, not only what happens inside them. A key part of Torus is etcd, a distributed key/value store used by CoreOS to automatically keep configuration data consistent across all machines in a cluster. In Torus, etcd is used to store and replicate metadata for all the files and objects stored in the pool.

Easy to be hard

Persistent storage for containerized applications is hard to do right. With conventional attached storage, there’s no guarantee of data locality or that the data needed for a given app is near the containers requiring it.

Other vendors have proposed solutions to the same problem. MapR, for instance, provides an option to make its Hadoop-based Converged Data Platform a persistent data store. Cisco wants to solve data locality for containers at the hardware level. But CoreOS’s solution is entirely software-based and requires software likely already in use.

CoreOS isn’t currently proposing Torus as a full-blown solution, but as a building block from which more robust solutions can eventually be created. Object storage in Torus, for instance, doesn’t exist yet, but CoreOS believes Torus’ primitives will allow it, among other mechanisms.

Now that container formats and behaviors are more settled, attention is turning to the problems that arise from trying to build large, distributed applications around them. By offering Torus as open source and pairing it with a project that already has momentum (Kubernetes), CoreOS provides a solution that minimizes the number of new technologies users need to bring to the fold. It does justice to the idea that containers were supposed to simplify matters, not complicate them.

Serdar Yegulalp

Serdar Yegulalp is a senior writer at InfoWorld. A veteran technology journalist, Serdar has been writing about computers, operating systems, databases, programming, and other information technology topics for 30 years. Before joining InfoWorld in 2013, Serdar wrote for Windows Magazine, InformationWeek, Byte, and a slew of other publications. At InfoWorld, Serdar has covered software development, devops, containerization, machine learning, and artificial intelligence, winning several B2B journalism awards including a 2024 Neal Award and a 2025 Azbee Award for best instructional content and best how-to article, respectively. He currently focuses on software development tools and technologies and major programming languages including Python, Rust, Go, Zig, and Wasm. Tune into his weekly Dev with Serdar videos for programming tips and techniques and close looks at programming libraries and tools.

More from this author