Questions tagged [ephemeral-storage]

12 questions
7
votes
1 answer

My kubernetes pods are Evicting with ephemeral-storage issue

I am running a k8 cluster with 8 workers and 3 master nodes. And my pods are evicting repetively with the ephemeral storage issues. Below is the error I am getting on Evicted pods: Message: The node was low on resource: ephemeral-storage.…
3
votes
1 answer

Is there a way to retrieve kubernetes container's ephemeral-storage usage details?

I create some pods with containers for which I set ephemeral-storage request and limit, like: (here 10GB) Unfortunately, for some containers, the ephemeral-storage will be fully filled for unknown reasons. I would like to understand which…
3
votes
1 answer

Kubernetes Ephemeral Storage Limit and Container Logs

Assuming I have set resource.limits.ephemeral-storage for containers in a Kubernetes cluster (using Docker), and the following Docker daemon.json logging configuration on the worker nodes: { "log-driver": "json-file", "log-opts": { …
hessfr
  • 33
  • 5
2
votes
0 answers

How to increase ephemeral storage size in Kubernetes

What are good ways to provide big "scratch" storage to Kubernetes jobs/deployments that require a lot of disk? I read about ephemeral volumes and it seems that the ideal thing for the case is to mount emptyDir volumes. My problem is that emptyDir…
Michele Piccolini
  • 2,634
  • 16
  • 29
1
vote
0 answers

Ephemeral Container kubectl debug prompt issue

I am trying to test Ephemeral Container in v1.23.5 & containerd://1.4.9 in minikube v1.23.0 after entering kubectl debug -it ephemeral-demo --image=busybox:1.35 --target=ephemeral-demo , i can see 2 issues prompt displayed improper format. each…
Venkat G
  • 11
  • 2
1
vote
2 answers

How to see what a k8s container is writing to ephemeral storage

One of our containers is using ephemeral storage but we don't know why. The app running in the container shouldn't be writing anything to the disk. We set the storage limit to 20MB but it's still being evicted. We could increase the limit but this…
Jessie
  • 2,319
  • 1
  • 17
  • 32
1
vote
1 answer

kubernetes deployment.yaml - ephemeral storage error

I am trying to deploy a microservice in kubernetes with ephemeral storage. So the storage will be deleted at the end of the lifecycle of the pod. I am getting errors with the below config in deployment.yaml: deployment.yaml: volumeMounts: -…
Raj kumar
  • 131
  • 1
  • 1
  • 10
1
vote
1 answer

How increase GKE ephemeral storage?

I have some microservices deployed on Google Kubernetes Engine composed of 3 "e2-medium" nodes with 10GB of disk each. Every time I perform a new deployment of the services I get the following load shedding event on the nodes: Stopping container…
0
votes
1 answer

Low on ephemeral Storage

I am trying to deploy a pod and copy 10GB of TPCDS data into the pod. I am using a PVC with storage capacity of 50 GB. My specifications are: resources: limits: cpu: "1" memory: 20Gi #ephemeral-storage: 20Gi …
0
votes
1 answer

Monitoring Lambda ephemeral storage use without Insights

I'd like to monitor the usage of our Lambdas' ephemeral storage, but I don't want to use the UI tools like Lambda Insights. We currently have a log-scanning python script set up that reads the logs to attain runtime, memory use/limit, etc., but also…
0
votes
0 answers

kubernetes cannot find ephemeral storage

I have cache ephemeral storage defined as below, however I get the following warning Warning FailedScheduling 108s default-scheduler 0/15 nodes are available: 15 persistentvolumeclaim…
0
votes
1 answer

How to decide correct value of Ephemeral storage requests and limits for my pod?

I am working on a'go' based application and using ephemeral-storage requests and limits in my resource yaml. I have started with requests 64Mi and limits 128Mi but is there a way to calculate the ephemeral storage requirements for a pod?. Also, if…
Parth Soni
  • 61
  • 2
  • 12