Difference between revisions of "Volumes (Kubernetes)"

From wikieduonline
Jump to navigation Jump to search
(Created page with "Kubernetes Volumes allows to store data independent of Container restarts. Volumes in Kubernetes are different that Docker Volumes.<ref>...")
 
Line 14: Line 14:
 
== See also ==
 
== See also ==
 
* [[Persistent Volumes]]
 
* [[Persistent Volumes]]
* [[DevOps/Kubernetes/Certified Kubernetes Administrator|Certified Kubernetes Administrator]]: [[DevOps/Kubernetes/Certified Kubernetes Administrator/Understand PersistentVolumeClaims for storage|Understand PersistentVolumeClaims for storage]]
+
* [[Certified Kubernetes Administrator]]: [[Understand PersistentVolumeClaims for storage]]
* [[DevOps/Kubernetes/Pods|Pods]]
+
* [[Pods]]

Revision as of 12:07, 22 December 2019

Kubernetes Volumes allows to store data independent of Container restarts. Volumes in Kubernetes are different that Docker Volumes.[1]

Kubernetes supports different type of volumes [2]:

  • Cloud providers: awsElasticBlockStore, azureDisk, azureFile
  • Storage technologies: fc (fibre channel)[3], iscsi
  • Networked filesystems: cephfs, nfs, glusterfs
  • Others:
    • cinder, configMap, csi, downwardAPI
    • emptyDir: the data in the emptyDir is deleted forever when Pod is removed from a node.
    • flexVolume[4], can be expanded [5]
    • flocker, gcePersistentDisk, hostPath, local, persistentVolumeClaim, projected, portworxVolume, quobyte, rbd, scaleIO, secret, storageos, vsphereVolume
  • Deprecated: gitRepo

See also

  • https://kubernetes.io/docs/concepts/storage/volumes/
  • https://kubernetes.io/docs/concepts/storage/volumes/#types-of-volumes
  • https://kubernetes.io/docs/concepts/storage/#fc
  • https://kubernetes.io/docs/concepts/storage/volumes/#flexVolume
  • https://kubernetes.io/docs/concepts/storage/persistent-volumes/#expanding-persistent-volumes-claims
  • Advertising: