Skip to content

Instantly share code, notes, and snippets.

View damianloch's full-sized avatar

Damian Loch damianloch

View GitHub Profile

Runbook: Kubernetes Pod Memory Leak Investigation

Incident Type

Memory leak causing OOMKilled pods

Affected Service

data-processor deployment (namespace: default)


#!/bin/bash
set -e
echo "Aurora Cloud Access Setup"
echo "================================"
# Function to check if a command exists
command_exists() {
command -v "$1" >/dev/null 2>&1
}