Skip to content
Go back

Why your Java Pods get OOMKilled: JVM Memory inside Kubernetes

Edit page

The Scene

You deploy a simple Java Spring Boot application to Kubernetes. You give it a resource limit of 1GB RAM in your deployment.yaml.

resources:
  limits:
    memory: "1Gi"

Edit page
Share this post on:

Next Post
The Case of the Vanishing Update: Fixing a Concurrency Bug