Skip to content

Instantly share code, notes, and snippets.

Copyright 2018 Google LLC.
SPDX-License-Identifier: Apache-2.0
Authors: ianchak@google.com, mtaufen@google.com silviabear@google.com, fbongiovanni@google.com
# Building Kubernetes from Source in Minutes
In this repo you'll find instructions for building kubernetes (k8s) from source in minutes.
You will start a GCP VM, install kubernetes (k8s) build and runtime dependencies, then build k8s from source. Afterward, we'll startup the local build and verify its working.
@smothiki
smothiki / virtualbox_ports.png
Created April 8, 2019 17:57 — forked from snb/virtualbox_ports.png
virtualbox serial console
virtualbox_ports.png
@smothiki
smothiki / Vagrantfile
Created April 10, 2019 22:10 — forked from garyachy/Vagrantfile
vagrant config for VirtualBox provider with serial port enabled
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "trusty64"
config.vm.network "private_network", ip: "192.168.50.4"
@smothiki
smothiki / 1_kubernetes_on_macOS.md
Created June 2, 2019 00:17 — forked from kevin-smets/1_kubernetes_on_macOS.md
Local Kubernetes setup on macOS with minikube on VirtualBox and local Docker registry

Requirements

Minikube requires that VT-x/AMD-v virtualization is enabled in BIOS. To check that this is enabled on OSX / macOS run:

sysctl -a | grep machdep.cpu.features | grep VMX

If there's output, you're good!

Prerequisites