Skip to content

Instantly share code, notes, and snippets.

View fabianbaier's full-sized avatar

Fabian Baier fabianbaier

View GitHub Profile
@fabianbaier
fabianbaier / ValidationLexicon.md
Last active March 15, 2019 18:49
Go-Playground v9 Validation Lexicon
@fabianbaier
fabianbaier / crasher.sh
Last active February 14, 2019 01:35
Kubernetes Minikube Apiserver Crasher through Eviction Threshold
#!/bin/bash
##
#FROM golang:1.10.1-alpine3.7 as builder
#WORKDIR /
#RUN dd if=/dev/zero of=/1gb_file bs=1048576000 count=1
#
#FROM alpine:3.7
#CMD ["sleep 3600"]
#COPY --from=builder /1gb_file .
@fabianbaier
fabianbaier / desired_cluster_profile.tfvars
Created November 8, 2018 18:22
desired_cluster_profile.tfvars for JupyterLab MJS Blog
dcos_cluster_name = "JupyterLab Blog"
dcos_version = "1.12.0"
num_of_masters = "1"
num_of_private_agents = "5"
num_of_public_agents = "1"
num_of_gpu_agents = "6"
aws_region = "us-west-2"
aws_bootstrap_instance_type = "m3.large"
aws_master_instance_type = "m4.2xlarge"
aws_agent_instance_type = "m4.2xlarge"