Skip to content
View mikejk8s's full-sized avatar
🦀
🦀

Organizations

@mediavine
Block or Report

Block or report mikejk8s

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
mikejk8s/README.md

Metrics

Pinned Loading

  1. gcp autosnapshot gcp autosnapshot
    1
    #!/bin/bash
    2
    # loop through all disks within this project  and create a snapshot
    3
    gcloud compute disks list --format='value(name,zone)'| while read DISK_NAME ZONE; do
    4
      gcloud compute disks snapshot $DISK_NAME --snapshot-names gcs-$DISK_NAME-$(date "+%Y-%m-%d-%s") --zone $ZONE
    5
    done
  2. k8s federation the hard way script k8s federation the hard way script
    1
    #! /bin/bash
    2
    CLUSTERS=( "fed-a" "fed-b" )
    3
    ZONES=( "us-central1-a" "us-central1-b")
    4
    
    
    5
    for i in {0..1}; do
  3. cockroachdb-backup cockroachdb-backup Public

    Forked from kminehart/cockroachdb-backup

    A docker image, a few scripts, and a kubernetes definition for backing up a Cockroach DB database

    Shell

  4. Remove fluentd GKE Remove fluentd GKE
    1
    kind: DaemonSet
    2
    apiVersion: extensions/v1beta1
    3
    metadata:
    4
      name: startup-script
    5
      labels:
  5. Google Snapshot Delete Google Snapshot Delete
    1
    #!/bin/bash
    2
    
    
    3
    # 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
    #
  6. gmud gmud Public

    a MUD world engine in go

    Go 3 1