Skip to content

Instantly share code, notes, and snippets.

View luebken's full-sized avatar

Matthias Lübken luebken

View GitHub Profile
@turkenh
turkenh / config.md
Last active October 12, 2021 17:33
provider-kafka-development-environment

Create at ~/.kaf/config

current-cluster: local
clusteroverride: ""
clusters:
- name: local
  version: ""
  brokers:
 - kafka-dev-0.kafka-dev-headless:9092
@albarki
albarki / rds.sh
Created July 7, 2018 21:46
Get List of RDS instances from All regions
for region in `aws ec2 describe-regions --output text | cut -f3`
do
echo -e "\nListing RDS in region:'$region'..."
aws rds describe-db-instances \
--region $region \
--query 'DBInstances[*].[DBInstanceIdentifier,ReadReplicaDBInstanceIdentifiers]'
done
@pgchamberlin
pgchamberlin / mapcamp2017.md
Created October 7, 2017 08:53
Notes from Map Camp 2017

Maps

Liam Maxwell

  • Gov must move silos -> platforms
  • Introduction of open standards and data
  • Coding in the open means sharing
  • Common standards means common tools
  • Outcome based teams
  • Change needs spend controls
  • Square of despair: procurement, security, legacy, capability
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@bbrowning
bbrowning / openshift_instructions.md
Last active August 22, 2018 15:59
Running Apache OpenWhisk on OpenShift

Running Apache OpenWhisk on OpenShift

Prerequisites

These instructions assume you are using Minishift 1.0.1 or newer as your OpenShift installation.

You'll also need a wsk binary in your $PATH to interact with OpenWhisk after it's deployed. Download the latest version for your OS

@philips
philips / users.md
Last active April 5, 2023 14:17
Kubernetes Third-Party Resource Users
oc login -u system:admin
cat <<-EOF > /tmp/pv.yaml
apiVersion: v1
kind: PersistentVolume
metadata:
name: pv0001
spec:
capacity:
storage: 1Gi
@olih
olih / jq-cheetsheet.md
Last active July 16, 2024 23:02
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq

@julz
julz / main.go
Created November 20, 2015 12:39
containersched minicontainer
package main
import (
"fmt"
"os"
"os/exec"
"syscall"
)
func main() {
@luebken
luebken / dockervolumesmac.md
Last active August 29, 2015 14:02
TL;DR version for using Docker volumes on the Mac