Storage Class and PVCs
Set up Storage Classes and PVCs in Kubernetes
Navigate to DevOps > Containers > EKS/Native > Storage Class
Configure EFS parameter created at Step1 by clicking on EFS Parameter.

K8s Storage Class Page
Here, we are configuring Kubernetes to use Storage Class created in Step2 above, to create a Persistent Volume with 10Gi of storage capacity and ReadWriteMany access mode.

K8s Storage Class (Persistent Volume Claim Tab)
Configure below in Volumes to create your application deployment using this PVC.
Volumes field
# Deployment using PersistentVolumeClaim.
- Name: <volumne name>
Path: <mount path>
Spec:
PersistentVolumeClaim:
claimName: <pvc name>

Services Page
Last modified 5mo ago