Skip to content

16Bitt/kubemem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kubemem

Kubemem is a small binary intended to be used as a liveness probe inside of your Kubernetes applications that will allow graceful failure when the memory starts to get too high. As it is not a shell script, it should be fast and portable for your containers.

Kubernetes already stops containers from using too much memory! What's the point?

Kubernetes does not offer a way to add a graceful handler for OOM killed containers currently, so this is a nice medium. Where I work, we have long running Sidekiq jobs with pods that should try to exit gracefully but are instead immediately trashed once they hit the memory threshold.

How it works

Kubemem has three options:

  • a warning percentage: When your RAM usage hits this threshold, kubemem will log the warning
  • a failure percentage: When your RAM usage hits this threshold, kubemem will exit with a non-zero exit code, causing kubernetes to trigger a graceful kill of your pod.
  • a logfile path

Kubemem will use the cgroup filesystem to get memory info, and then use your options to either log or fail.

Usage

First, pick the tag you'd like to use:

  • glibc: Debian-based builds
  • musl: This is what you'll select for alpine

Simply add this container as another stage in your build:

FROM sixteenbitt/kubemem:glibc AS kubemem

# Do your normal build

COPY --from=kubemem /bin/kubemem /bin/kubemem

And then add a probe to your deployment:

    livenessProbe:
      exec:
        command:
        - kubemem
        - --failure
        - "95" # Fail at 95% memory
        - --warning
        - "85" # Warn at 85% or greater memory usage
        - --logfile
        - /proc/1/fd/1 # Write to PID 1's output, allowing logging
      initialDelaySeconds: 5
      periodSeconds: 5

If you'd like to play around with it, you can run it from the command line:

docker run sixteenbitt/kubemem:musl kubemem --warning 80 --failure 90

A note about logging

Kubernetes currently aggregates probe logs in kubelet, and only if logging is set to verbosity level 4 or higher. See this issue for more info about how kubernetes handles probe logs if you'd like to capture them.

As a workaround, set your logfile parameter to /proc/1/fd/1 to write to the containers PID 1 stdout for logging.

About

A small binary to probe memory usage in a kubernetes pod

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published