I move kubernetes from Google GKE to own in house rack. What persistent storage should I use?
Kubernetes Local Persistent became beta in 13th of April 2018 only https://kubernetes.io/blog/2018/04/13/local-persistent-volumes-beta/
I have seen that many options:- https://kubernetes.io/docs/concepts/storage/persistent-volumes/#types-of-persistent-volumes
Not sure what should I choose. Will something work out box with GKE deployment files?
In Deployment files from GKE, you need to change
spec.volumes
settings according to your Persistent Volume setups.I recommend you to choose one of the following options:
The easiest way is to use
HostPath
. It mounts a file or a directory from the host Node’s file system into your Pod. Note that in this case, data on one Node is not reachable from another Node without additional configurations. Example of usage in Kubernetes:You can use
NFS
. You need to configure NFS server and after that you can use its volumes in Deployments via Persistent Volume Claims. Example of usage in Kubernetes:You can look through the link for more information about using NFS.
You can use
GlusterFS
. You need to configure your own GlusterFS installation, and after that you can use its volumes in Deployments. Example of usage in Kubernetes:You can look through the link for more information about using GlusterFS.
You can find more information about Persistent Volumes and Persistent Volume Claims here.