Suresh
Suresh

Reputation: 49

How can I use AWS EBS Volumes with bare metal Kubernetes

I am using a manually created Kubernetes Cluster (using kubeadm) deployed on AWS ec2 instances (manually created ec2 instances). I want to use AWS EBS volumes for Kubernetes persistent volume. How can I use AWS EBS volumes within Kubernetes cluster for persistent volumes?

Cluster details:

Upvotes: 2

Views: 1012

Answers (1)

Mikolaj S.
Mikolaj S.

Reputation: 3214

Posted community wiki for better visibility with general solution as there are no further details / logs provided. Feel free to expand it.


The official supported way to mount Amazon Elastic Block Store as Kubernetes volume on the self-managed Kubernetes cluster running on AWS is to use awsElasticBlockStorevolume type.

To manage the lifecycle of Amazon EBS volumes on the self-managed Kubernetes cluster running on AWS please install Amazon Elastic Block Store Container Storage Interface Driver.

Upvotes: 1

Related Questions