mikejk8s
Follow
🦀
distributed computing, k8s, platform architecture cuda
- Denver, CO
- https://bsky.app/profile/swozey.bsky.social
Highlights
Pinned Loading
-
gcp autosnapshot
gcp autosnapshot 1#!/bin/bash
2# loop through all disks within this project and create a snapshot
3gcloud compute disks list --format='value(name,zone)'| while read DISK_NAME ZONE; do
4gcloud compute disks snapshot $DISK_NAME --snapshot-names gcs-$DISK_NAME-$(date "+%Y-%m-%d-%s") --zone $ZONE
5done
-
k8s federation the hard way script
k8s federation the hard way script 1#! /bin/bash
2CLUSTERS=( "fed-a" "fed-b" )
3ZONES=( "us-central1-a" "us-central1-b")
45for i in {0..1}; do
-
cockroachdb-backup
cockroachdb-backup PublicForked from kminehart/cockroachdb-backup
A docker image, a few scripts, and a kubernetes definition for backing up a Cockroach DB database
Shell
-
Remove fluentd GKE
Remove fluentd GKE 1kind: DaemonSet
2apiVersion: extensions/v1beta1
3metadata:
4name: startup-script
5labels:
-
Google Snapshot Delete
Google Snapshot Delete 1#!/bin/bash
23# snapshots are incremental and dont need to be deleted, deleting snapshots will merge snapshots, so deleting doesn't loose anything
4# having too many snapshots is unwiedly so this script deletes them after 60 days
5#
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.