Skip to content

Instantly share code, notes, and snippets.

View mihok's full-sized avatar

Matthew Mihok mihok

View GitHub Profile
Timestamp: 2016-03-01 14:09:14.858692027 +0000 UTC
Code: System error
Message: not a directory
Frames:
---
0: setupRootfs
Package: github.com/opencontainers/runc/libcontainer
File: rootfs_linux.go@40
@mihok
mihok / kubernetes-ubuntu-vagrant.rb
Created February 14, 2016 01:28
Vagrant file to create 3 Ubuntu 14.04 machines to run Kubernetes on
$instances = 3
$instance_name_prefix = "kube"
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.ssh.forward_agent = true
(1..$instances).each do |i|
config.vm.define vm_name = "%s-%02d" % [$instance_name_prefix, i] do |config|
config.vm.hostname = vm_name