Skip to content

Instantly share code, notes, and snippets.

@tom-butler
tom-butler / local-k8s.sh
Created May 16, 2019 04:43
Local kubernetes cluster using k3d, with pvc support
#!/bin/bash
# Install k3d
k3d --version || wget -q -O - https://raw.githubusercontent.com/rancher/k3d/master/install.sh | bash
# verify it
k3d check-tools
# create a volume and cluster
docker volume create kube-volume