mirror of https://github.com/k3s-io/k3s
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.4 KiB
70 lines
2.4 KiB
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
#
|
|
|
|
ENV['TEST_INSTALL_SH'] ||= '../../../install.sh'
|
|
|
|
Vagrant.configure("2") do |config|
|
|
config.vagrant.plugins = ["vagrant-k3s"]
|
|
config.vm.box = 'opensuse/Leap-15.5.x86_64'
|
|
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
|
config.vm.synced_folder '.', '/vagrant', disabled: true
|
|
|
|
# Load in helper functions
|
|
load "../install_util.rb"
|
|
|
|
config.vm.define 'install-opensuse-leap', primary: true do |test|
|
|
test.vm.hostname = 'smoke'
|
|
test.vm.provision "add-bin-path", type: "shell", inline: "echo \"export PATH=/usr/local/bin:\$PATH\" >> ~/.bashrc"
|
|
test.vm.provision 'k3s-upload', type: 'file', run: 'always', source: ENV['TEST_INSTALL_SH'], destination: 'install.sh'
|
|
# /sbin/apparmor_parser is needed by the 1.21 kubelet if the value of /sys/module/apparmor/parameters/enabled is Y
|
|
test.vm.provision 'k3s-prepare', type: 'shell', run: 'once', inline: 'zypper install -y apparmor-parser'
|
|
test.vm.provision 'k3s-install', type: 'k3s', run: 'once' do |k3s|
|
|
k3s.installer_url = 'file:///home/vagrant/install.sh'
|
|
k3s.args = %w[server]
|
|
k3s.env = ENV.select{|k,v| k.start_with?('K3S_') || k.start_with?('INSTALL_K3S_')}.merge({
|
|
:INSTALL_K3S_NAME => 'server',
|
|
:INSTALL_K3S_SKIP_SELINUX_RPM => 'true',
|
|
})
|
|
k3s.config = <<~YAML
|
|
token: 'vagrant'
|
|
YAML
|
|
end
|
|
|
|
test.vm.provision "k3s-wait-for-node", type: "shell", run: ENV['CI'] == 'true' ? 'never' : 'once' do |sh|
|
|
sh.env = { :PATH => "/usr/local/bin:/usr/local/sbin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin" }
|
|
sh.inline = <<~SHELL
|
|
#!/usr/bin/env bash
|
|
set -eu -o pipefail
|
|
echo 'Waiting for node to be ready ...'
|
|
time timeout 300 bash -c 'while ! (kubectl wait --for condition=ready node/$(hostnamectl --static) 2>/dev/null); do sleep 5; done'
|
|
kubectl get node,all -A -o wide
|
|
SHELL
|
|
end
|
|
|
|
waitForCoreDns(test.vm)
|
|
|
|
waitForLocalStorage(test.vm)
|
|
|
|
waitForMetricsServer(test.vm)
|
|
|
|
waitForTraefik(test.vm)
|
|
|
|
kubectlStatus(test.vm)
|
|
|
|
checkK3sProcesses(test.vm)
|
|
|
|
end
|
|
|
|
%w[libvirt virtualbox vmware_desktop].each do |p|
|
|
config.vm.provider p do |v|
|
|
v.cpus = ENV['TEST_VM_CPUS'] || 2
|
|
v.memory = ENV['TEST_VM_MEMORY'] || 2048
|
|
end
|
|
end
|
|
config.vm.provider :virtualbox do |v,o|
|
|
v.gui = false
|
|
v.check_guest_additions = false
|
|
end
|
|
end
|