Skip to content

Instantly share code, notes, and snippets.

@hi1280
hi1280 / Vagrantfile
Created September 25, 2019 13:50
Kubernetes Setup Using Ansible and Vagrant
IMAGE_NAME = "bento/ubuntu-16.04"
N = 2
Vagrant.configure("2") do |config|
config.ssh.insert_key = false
config.vm.provider "virtualbox" do |v|
v.memory = 1024
v.cpus = 2
end