-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile
164 lines (137 loc) · 5.23 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Copyright The flintlock Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
Vagrant.configure("2") do |config|
config.vm.box = "generic/ubuntu2204"
config.ssh.forward_agent = true
config.vm.synced_folder "./", "/home/vagrant/flintlock"
config.vm.network "forwarded_port", guest: 9090, host: 9090
config.vm.network "forwarded_port", guest: 3000, host: 3000
cpus = 3
memory = 8192
config.vm.provider :virtualbox do |v|
# Enable nested virtualisation in VBox
v.customize ["modifyvm", :id, "--nested-hw-virt", "on"]
v.cpus = cpus
v.memory = memory
end
config.vm.provider :libvirt do |v, override|
# If you want to use a different storage pool.
# v.storage_pool_name = "vagrant"
v.cpus = cpus
v.memory = memory
override.vm.synced_folder "./", "/home/vagrant/flintlock", type: "nfs"
end
config.vm.provision "upgrade-packages", type: "shell", run: "once" do |sh|
sh.inline = <<~SHELL
#!/usr/bin/env bash
set -eux -o pipefail
apt update && apt upgrade -y
SHELL
end
config.vm.provision "install-basic-packages", type: "shell", run: "once" do |sh|
sh.inline = <<~SHELL
#!/usr/bin/env bash
set -eux -o pipefail
apt install -y \
make \
git \
gcc \
curl \
unzip \
containerd
SHELL
end
config.vm.provision "install-golang", type: "shell", run: "once" do |sh|
sh.env = {
'GO_VERSION': ENV['GO_VERSION'] || "1.18.4",
}
sh.inline = <<~SHELL
#!/usr/bin/env bash
set -eux -o pipefail
curl -fsSL "https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz" | tar Cxz /usr/local
cat >> /etc/environment <<EOF
PATH=/usr/local/go/bin:$PATH
EOF
source /etc/environment
cat >> /etc/profile.d/sh.local <<EOF
GOPATH=\\$HOME/go
PATH=\\$GOPATH/bin:\\$PATH
export GOPATH PATH
EOF
source /etc/profile.d/sh.local
SHELL
end
config.vm.provision "configure-thinpool", type: "shell", run: "once" do |sh|
sh.inline = <<~SHELL
curl -fsSL "https://raw.githubusercontent.com/weaveworks-liquidmetal/flintlock/main/hack/scripts/devpool.sh" -o /tmp/devpool.sh
chmod +x /tmp/devpool.sh && /tmp/devpool.sh
SHELL
end
config.vm.provision "configure-containerd", type: "shell", run: "once" do |sh|
sh.inline = <<~SHELL
#!/usr/bin/env bash
set -eux -o pipefail
# ensure directories exist
mkdir -p /etc/containerd
mkdir -p /var/lib/containerd-dev/snapshotter/devmapper
mkdir -p /run/containerd-dev/
curl -fsSL "https://raw.githubusercontent.com/weaveworks-liquidmetal/flintlock/main/hack/scripts/example-config.toml" -o /etc/containerd/config.toml
systemctl restart containerd
SHELL
end
config.vm.provision "install-kvm", type: "shell", run: "once" do |sh|
sh.inline = <<~SHELL
#!/usr/bin/env bash
set -eux -o pipefail
apt install -y qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils
adduser 'vagrant' libvirt
adduser 'vagrant' kvm
setfacl -m u:${USER}:rw /dev/kvm
SHELL
end
config.vm.provision "install-firecracker", type: "shell", run: "once" do |sh|
sh.inline = <<~SHELL
curl -fsSL "https://github.com/weaveworks/reignite/files/7278467/firecracker_macvtap.zip" -o /tmp/firecracker-macvtap.zip
unzip -u /tmp/firecracker-macvtap.zip -d /usr/local/bin
SHELL
end
config.vm.provision "configure-kernel-headers", type: "shell", run: "once" do |sh|
sh.inline = <<~SHELL
apt search linux-headers-$(uname -r)
sudo apt update && sudo apt install linux-headers-$(uname -r)
ls -l /usr/src/linux-headers-$(uname -r)
SHELL
end
config.vm.provision "install-minikube", type: "shell", run: "once" do |sh|
sh.inline = <<~SHELL
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
SHELL
end
config.vm.provision "install-kubectl", type: "shell", run: "once" do |sh|
sh.inline = <<~SHELL
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
chmod +x ./kubectl && sudo mv ./kubectl /usr/local/bin/kubectl
SHELL
end
config.vm.provision "install-flux", type: "shell", run: "once" do |sh|
sh.inline = <<~SHELL
curl -s https://fluxcd.io/install.sh | sudo bash
SHELL
end
config.vm.provision "start-cluster", type: "shell", run: "once" do |sh|
sh.inline = <<~SHELL
curl -fsSL "https://raw.githubusercontent.com/nikimanoledaki/gitops-energy-usage/main/scripts/start-cluster.sh" -o start-cluster.sh
chmod +x start-cluster.sh
SHELL
end
end