Storage Best Practices

Find out about storage best practices for clusters you've created with Kubernetes Engine (OKE).

This section contains best practices for storage and Kubernetes Engine.

Best Practice: Choose appropriate storage type

We recommend that you consider the type of workload that a cluster will run before choosing a storage type that is appropriate for that workload.

If you require a durable, scalable, and distributed enterprise-grade network file system, we recommend you use the Oracle Cloud Infrastructure File Storage service.

If you require persistent, durable, and high-performance block storage, we recommend you use the Oracle Cloud Infrastructure Block Volume service.

Best Practice: Create and use storage classes to define application needs

We recommend that you define the required type of storage using Kubernetes storage classes, and then reference the storage classes in pod and deployment specifications. Storage class definitions work together to create the appropriate storage and connect it to pods.

See Setting Up Storage for Kubernetes Clusters.

Best Practice: Create and use volumes for persistent storage

We recommend that you create and use persistent volumes (PVs) to store data outside of containers and prevent data loss.

Container storage via a container's root file system is ephemeral, and can disappear upon container deletion and creation. To provide a durable location to prevent data from being lost, create and use persistent volumes to store data outside of containers.

When creating a persistent volume, the Kubernetes documentation recommends:

  • Always including persistent volume claims (PVCs) in container configurations.
  • Always defining a default storage class for a cluster, otherwise PVCs that don't specify a specific class will fail.
  • Always giving storage classes meaningful names.

See Setting Up Storage for Kubernetes Clusters.

Best Practice: Dynamically provision volumes

We recommend that you dynamically provision persistent volumes (PVs) backed by the Block Volume service, rather than statically creating and assigning volumes. Dynamically provisioning volumes reduces management overhead and enables scaling.

We also recommend that you include an appropriate reclaim policy in storage class definitions to minimize unneeded storage costs when pods are deleted.

Note that dynamic provisioning is not available for PVs backed by the File Storage service.

See Creating a PVC on a Block Volume Using the CSI Volume Plugin.

Best Practice: Use the CSI volume plugin rather than the FlexVolume volume plugin

We recommend that you use the CSI volume plugin to provision persistent volume claims on the Block Volume service, rather than the FlexVolume volume plugin.

We recommend the CSI volume plugin because:

  • New functionality is only being added to the CSI volume plugin, not to the FlexVolume volume plugin (although Kubernetes developers will continue to maintain the FlexVolume volume plugin).
  • The CSI volume plugin does not require access to underlying operating system and root file system dependencies.

The StorageClass specified for a PVC controls which volume plugin to use to connect to Block Volume service volumes. Two storage classes are defined by default, oci-bv for the CSI volume plugin and oci for the FlexVolume plugin. If you don't explicitly specify a value for storageClassName in the yaml file that defines the PVC, the cluster's default storage class is used.

Kubernetes Engine initially sets a cluster's default storage class according to the Kubernetes version that was specified when the cluster was created. In clusters created by Kubernetes Engine to run Kubernetes version 1.24 (or later), the oci-bv storage class is initially set as the default.

See Creating a PVC on a Block Volume Using the CSI Volume Plugin (and Change the default StorageClass in the Kubernetes documentation).

Best Practice: Limit storage resource consumption

We recommend that you place limits on the use of storage by containers, to reflect the amount of storage actually available in the local data center, or the budget available for Oracle Cloud storage resources.

You can limit container storage consumption by using:

  • Resource Quotas to limit the amount of resources (including storage, CPU, and memory) that all the containers within a Kubernetes namespace can use.
  • StorageClasses to limit the amount of storage provisioned to containers in response to a persistent volume claim (PVC).

See Setting Up Storage for Kubernetes Clusters (and Resource Quotas in the Kubernetes documentation).

Best Practice: Secure and back up data

We recommend that you use appropriate tools to secure and back up data.

Best Practice: Use a distributed file system for ReadWriteMany use cases

We recommend that you use a distributed file system (such as NFS, or the Oracle Cloud Infrastructure File Storage service) when provisioning PVCs for ReadWriteMany use cases.

Block volume storage with high performance capabilities (such as the Oracle Cloud Infrastructure Block Volume service) is more appropriate when provisioning PVCs for single read and write use cases.

See Setting Up Storage for Kubernetes Clusters.