layout: post
title: “K8s storage”
date: 2019-06-02 14:25:06
description: Kubernetes storage
tags:

  • k8s

img(°0°)
img(°0°)

Concept

  • PersistentVolume – the low level representation of a storage volume
  • Volume Driver – the code used to communicate with the backend storage provider
  • Pod – a running container that will consume a PersistentVolume
  • PersistentVolumeClaim – the binding between a Pod and PersistentVolume
  • StorageClass – allows for dynamic provisioning of PersistentVolumes

refer