Skip to content

Instantly share code, notes, and snippets.

View mjpitz's full-sized avatar
🏳️‍🌈
out and proud

Mya mjpitz

🏳️‍🌈
out and proud
View GitHub Profile
@mjpitz
mjpitz / _README.md
Last active May 29, 2021 00:58
dgraph troubles

Three files:

  • schema.gql contains the type definitions I inserted into dgraph.
  • seed.rdf contains the set definition used to populate the database with associated information.
  • query.gql contains the dql query I'm trying to execute based on the examples...

When I run the query I get no results back. I've tried this at all sorts of different parts of the simple tree. Can't get any information anywhere. Can see data stored in the system just can't access it.

@mjpitz
mjpitz / kube-zsh-rprompt.zsh
Created March 9, 2021 04:14
embed some kube context in your zsh shell
kubeconfig="${KUBECONFIG}"
if [[ -z "${kubeconfig}" ]]; then
kubeconfig="$(mktemp):$(ls -1 ${HOME}/.kube/*.yaml | tr $'\n' ':')${HOME}/.kube/config"
fi
export KUBECONFIG="${kubeconfig}"
function zsh_kube_prompt() {
zsh_kube_context=$(kubectl config current-context)
zsh_kube_authinfo=$(kubectl config get-contexts "${zsh_kube_context}" --no-headers | awk '{print $4}')
zsh_kube_ns=$(kubectl config get-contexts "${zsh_kube_context}" --no-headers | awk '{print $5}')

Shows how to connect Hashicorp's memberlist to Golang's groupcache for dynamic cluster membership. Memberlist gossip can be encrypted by setting the SecretKey or Keyring attributes on cfg.

Supporting configuration for my next blog post on using consul connect to deploy a service mesh on raspberry pis.

This gist contains snippets for my "Adventures in Path Based Routing" blog post. In the post, I use kubernetes to demonstrate several useful path based routing techniques. This is mostly the skeleton for setting something up. Nothing end to end.

Blog Post

@mjpitz
mjpitz / 00-docker-registry.md
Last active November 5, 2020 14:45
Simple docker-registry deployment

Simple docker registry deployment

  • docker-registry (mirror of dockerhub, backed by S3 and redis)
  • docker-auth (restricts access to images unauthenticated users can pull)
  • Ingress that sets both up behind a common domain
@mjpitz
mjpitz / runbook.md
Last active November 2, 2020 15:25
runbook.md

Runbook Template

General

A quick description of the services. 1 to 2 sentences max. Why does this service matter? What is it's core functionality? What Features does it provide users?

Failure Mode and Effect Analysis

[FMEA] is a method of failure analysis that helps teams create reliable systems and develop comprehensive on-call response patterns.

@mjpitz
mjpitz / production-outage-scenario-template.md
Created September 26, 2020 21:29
production-outage-scenario-template.md

Production Outage Scenario Template

Symptoms

Describe the current state of the system.

Context

Provide context about the systems and the potential impact on the end users.

@mjpitz
mjpitz / git-migrate.sh
Created August 19, 2020 01:10
git-migrate.sh
#!/usr/bin/env bash
set -e
function usage {
echo ''
echo ' git migrate <repourl> <target> [branch: main]'
echo ''
echo ' This command is used to migrate code from the repository that'
echo ' exists at the specified URL, at target path in repository, on'
echo ' the specified branch. This command will preserve git history'
#!/usr/bin/env bash
# Quick script that will prepent a `date:` field to all files. Helpful for a qiuck one time hack.
for file in $(find ${1} -type f); do
last_modified=$(git log -n 1 --pretty=format:"%ad" --date=short -- "${file}")
content="---\\ndate: ${last_modified}"
echo "${file}"
sed -i "1s/.*/${content}/" "${file}"