TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Bare-metal replicated storage for a small K8s cluster

1 pointsby robobenover 2 years ago
Hey lovely HN people,<p>I am running a small and simple 3 node microk8s cluster on standard VPS and looking for a reliable (read replicated to all nodes) simple storage solution. I can create dedicated partitions, I cannot have dedicated disks for block storage. I want to easily add and remove nodes without migrating data around.<p>What’s the simplest way of doing that? I looked into OpenEBS but cstor needs disks and mayastor sounds massive (runs its own etcd etc) and jiva I don’t know.<p>Any other ideas?<p>Thanks!

2 comments

warrenmover 2 years ago
Does your app (or apps) running on K8s support object storage (ie S3-compatible)? You might consider running MinIO, if that&#x27;s the case - <a href="https:&#x2F;&#x2F;min.io" rel="nofollow">https:&#x2F;&#x2F;min.io</a>
评论 #33122960 未加载
warrenmover 2 years ago
Can your containers mount NFS points?<p>If so, just run a traditional file server, and export data via NFS (or CIFS)<p>Beware, though, multiple points <i>writing</i> to the same file at the same time is undefined behavior over NFS