-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile
76 lines (64 loc) · 2.1 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# -*- mode: ruby -*-
# vi: set ft=ruby :
POD_NETWORK_CIDR = "10.244.0.0/16"
CONTROL_IP = "192.168.121.10"
WORKER_IPS = ["192.168.121.11", "192.168.121.12"]
Vagrant.configure("2") do |config|
config.vm.box = "k8s-base"
config.vm.box_url = "file://output-k8s-base/package.box"
config.vm.box_check_update = true
config.vm.synced_folder ".", "/vagrant", disabled: true
# SSH key configuration for Ansible
config.ssh.insert_key = true
config.ssh.forward_agent = true
# Configure Ansible defaults
ansible_config = proc do |ansible|
ansible.compatibility_mode = "2.0"
ansible.become = true
end
# Control Node
config.vm.define "k8s-control" do |control|
control.vm.hostname = "k8s-control"
control.vm.network "private_network", ip: CONTROL_IP
# Trigger to remove obsolete k8s-join.sh from the host machine
control.trigger.before [:destroy, :provision] do |trigger|
trigger.name = "Remove obsolete k8s-join.sh from host"
trigger.run = { inline: "rm -f ./k8s-join.sh" }
end
control.vm.provider "libvirt" do |lv|
lv.memory = 2048
lv.cpus = 2
lv.cpu_mode = "host-passthrough"
end
control.vm.provision "ansible" do |ansible|
ansible_config.call(ansible)
ansible.extra_vars = {
pod_network_cidr: POD_NETWORK_CIDR,
control_ip: CONTROL_IP,
}
ansible.playbook = "control-playbook.yml"
end
end
# Worker Nodes
WORKER_IPS.each_with_index do |ip, i|
config.vm.define "k8s-worker-#{i+1}", depends_on: ["k8s-control"] do |worker|
worker.vm.hostname = "k8s-worker-#{i+1}"
worker.vm.network "private_network", ip: ip
worker.vm.provider "libvirt" do |lv|
lv.memory = 2048
lv.cpus = 2
lv.cpu_mode = "host-passthrough"
end
worker.vm.provision "ansible" do |ansible|
ansible_config.call(ansible)
ansible.playbook = "worker-playbook.yml"
end
end
end
# Configure libvirt defaults
config.vm.provider :libvirt do |libvirt|
libvirt.driver = "kvm"
libvirt.host = "localhost"
libvirt.uri = "qemu:///system"
end
end