Instance Store in EKS

0

How do I access the instance storage on EKS nodes? e.g. If my Pod images are very large, instead of having large EBS volumes, I keep it to the bare minimum and make sure pod images are stored on the instance store (which in quite large for G-instances). Or create a PVC with the volume being located on the instance storage. Note that these two are different scenarios.

user101
asked 3 months ago475 views
3 Answers
4
Accepted Answer

Hello,

Refer this Documentation to achieve Instance Store in EKS https://aws.amazon.com/blogs/containers/eks-persistent-volumes-for-instance-store/

profile picture
EXPERT
answered 3 months ago
profile picture
EXPERT
reviewed 3 months ago
profile picture
EXPERT
reviewed 3 months ago
profile picture
EXPERT
Sandeep
reviewed 3 months ago
EXPERT
reviewed 3 months ago
EXPERT
reviewed 3 months ago
1

Hello,

Use a container image registry like Docker Hub or Amazon ECR to store your container images. This is the recommended approach for managing images in production environments.In your pod spec (YAML file), reference the image location from the registry using the image field.

please look at AWS Documment you will get more information.

https://aws.amazon.com/blogs/containers/eks-persistent-volumes-for-instance-store/

EXPERT
answered 3 months ago
profile picture
EXPERT
Sandeep
reviewed 3 months ago
EXPERT
reviewed 3 months ago
0

To access instance storage on EKS nodes, you can use persistent volumes for instance store. This allows you to use the instance store for your pod images instead of relying on large EBS volumes. Detailed steps and configurations can be found in the AWS documentation.

https://aws.amazon.com/blogs/containers/eks-persistent-volumes-for-instance-store/

profile picture
EXPERT
answered 3 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions