kubernetes / kops

Kubernetes Operations (kOps) - Production Grade k8s Installation, Upgrades and Management
https://kops.sigs.k8s.io/
Apache License 2.0
15.66k stars 4.61k forks source link

Volumes available in multiple zones #16612

Closed 524c closed 1 week ago

524c commented 2 weeks ago

I have a cluster on AWS with multiple control-planes and workers in different zones. I'm trying to find a storage solution with replication so that deployments/pods can run in multiple zones. I thought about using rook/ceph, but there are some challenges in getting it to work with KOPS on AWS.

Does anyone have any ideas on how I can resolve this? it doesn't necessarily have to be with rook/ceph. I just want my pods to be able to transit in any zone and continue to access the PVCS.

524c commented 2 weeks ago

One of the problems I face is that I cannot configure, for example, the path that rook/ceph needs because the instances are volatile and after an update I will lose all manual configuration I make.

zetaab commented 1 week ago

If you need volume that works in multiple zones you need to use like EFS volume type.

524c commented 1 week ago

If you need volume that works in multiple zones you need to use like EFS volume type.

thanks!