EKS Cluster and Create CSI Driver to store credentials in AWS Secrets Manager via SecretProviderClass
EKS Cluster and Create CSI Driver to Store Credentials in AWS Secrets Manager Setup EKS Cluster and Manage Credentials at Runtime using CSI Driver with SecretProviderClass and AWS Secrets Manager Assuming you have configured/installed AWS CLI, EKSCTL, KUBECTL, and HELM. 📦 CSI Basic Information CSI (Container Storage Interface) is widely used as a Storage Technology. Created by Google | Mesosphere | Docker. It has two plugins : one runs on the Master Node (Centralized Controller Plugin) and another on Worker Nodes (Decentralized headless Node Plugin). CSI communication protocol is gRPC. The communication between Container Orchestration to Controller Plugin (Master) and to Node Plugin (Worker Node) happens using gRPC . CSI Drivers: vendor-specific, compiled into Kubernetes/OpenShift binaries. To use a CSI driver, a StorageClass needs to be assigned first. The CSI driver is then set as the Provisioner for the Storage Class. CSI drivers provide three main ser...