Skip to content

Instantly share code, notes, and snippets.

View joestringer's full-sized avatar

Joe Stringer joestringer

View GitHub Profile
@joestringer
joestringer / deploy_kernel_to_gke.sh
Created January 26, 2022 22:00
Deploy a new kernel into a GKE VM
#!/bin/bash
set -eo pipefail
FETCH_DEBS=fetch_ubuntu_mainline_debs.sh
FETCH_DEBS_PATH=$PWD/$FETCH_DEBS
if [[ $# -lt 2 ]]; then
>&2 echo "usage: $0 <KERNEL-VERSION> <NODE-NAME> [NODE-NAME ...]"
>&2