mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
Update install test OS matrix (#9480)
* Remove old cgroupsv2 test * Consolidate install test clauses into functions * Unpin vagrant-k3s plugin version, run latest * Add ubuntu-2204 as install test, remove ubuntu-focal * Update nightly install matrix * Move to Leap 15.5 * Consolidate vagrant box caching key to improve cache hits on all VM testing Signed-off-by: Derek Nola <derek.nola@suse.com>
This commit is contained in:
parent
922c5a6bed
commit
fa37d03395
88
.github/workflows/cgroup.yaml
vendored
88
.github/workflows/cgroup.yaml
vendored
@ -1,88 +0,0 @@
|
|||||||
name: Control Group
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
paths-ignore:
|
|
||||||
- "**.md"
|
|
||||||
- "channel.yaml"
|
|
||||||
- "install.sh"
|
|
||||||
- "tests/**"
|
|
||||||
- "!tests/cgroup/**"
|
|
||||||
- ".github/**"
|
|
||||||
- "!.github/workflows/cgroup.yaml"
|
|
||||||
pull_request:
|
|
||||||
paths-ignore:
|
|
||||||
- "**.md"
|
|
||||||
- "channel.yaml"
|
|
||||||
- "install.sh"
|
|
||||||
- "tests/**"
|
|
||||||
- "!tests/cgroup/**"
|
|
||||||
- ".github/**"
|
|
||||||
- "!.github/workflows/cgroup.yaml"
|
|
||||||
workflow_dispatch: {}
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
uses: ./.github/workflows/build-k3s.yaml
|
|
||||||
test:
|
|
||||||
name: "Conformance Test"
|
|
||||||
needs: build
|
|
||||||
# nested virtualization is only available on macOS hosts
|
|
||||||
runs-on: macos-12
|
|
||||||
timeout-minutes: 40
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
vm: [fedora]
|
|
||||||
mode: [unified]
|
|
||||||
max-parallel: 1
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
working-directory: tests/cgroup/${{ matrix.mode }}/${{ matrix.vm }}
|
|
||||||
steps:
|
|
||||||
- name: "Checkout"
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with: { fetch-depth: 1 }
|
|
||||||
- name: "Download Binary"
|
|
||||||
uses: actions/download-artifact@v3
|
|
||||||
with: { name: k3s, path: dist/artifacts/ }
|
|
||||||
- name: "Vagrant Cache"
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.vagrant.d/boxes
|
|
||||||
~/.vagrant.d/gems
|
|
||||||
key: cgroup-${{ hashFiles(format('tests/cgroup/{0}/{1}/Vagrantfile', matrix.mode, matrix.vm)) }}
|
|
||||||
id: vagrant-cache
|
|
||||||
continue-on-error: true
|
|
||||||
- name: "Vagrant Plugin(s)"
|
|
||||||
run: vagrant plugin install vagrant-k3s vagrant-reload
|
|
||||||
- name: "Vagrant Up"
|
|
||||||
run: vagrant up
|
|
||||||
- name: "K3s Prepare"
|
|
||||||
run: vagrant provision --provision-with=k3s-prepare
|
|
||||||
- name: ⏬ "K3s Install"
|
|
||||||
run: vagrant provision --provision-with=k3s-install
|
|
||||||
- name: ⏩ "K3s Start"
|
|
||||||
run: vagrant provision --provision-with=k3s-start
|
|
||||||
- name: "K3s Ready" # wait for k3s to be ready
|
|
||||||
run: vagrant provision --provision-with=k3s-ready
|
|
||||||
- name: "K3s Status" # kubectl get node,all -A -o wide
|
|
||||||
run: vagrant provision --provision-with=k3s-status
|
|
||||||
- name: "Sonobuoy (--mode=quick)"
|
|
||||||
env: {TEST_RESULTS_PATH: rootfull}
|
|
||||||
run: vagrant provision --provision-with=k3s-sonobuoy
|
|
||||||
- name: "K3s Stop" # stop k3s rootfull
|
|
||||||
run: vagrant ssh -- sudo systemctl stop k3s-server
|
|
||||||
- name: "Vagrant Reload"
|
|
||||||
run: vagrant reload
|
|
||||||
- name: "[Rootless] Starting K3s"
|
|
||||||
run: vagrant ssh -- systemctl --user start k3s-rootless
|
|
||||||
- name: "[Rootless] K3s Ready"
|
|
||||||
env: {TEST_KUBECONFIG: /home/vagrant/.kube/k3s.yaml}
|
|
||||||
run: vagrant provision --provision-with=k3s-ready
|
|
||||||
# - name: "[Rootless] Sonobuoy (--mode=quick)"
|
|
||||||
# env: {TEST_KUBECONFIG: /home/vagrant/.kube/k3s.yaml, TEST_RESULTS_PATH: rootless}
|
|
||||||
# run: vagrant provision --provision-with=k3s-sonobuoy
|
|
7
.github/workflows/install.yaml
vendored
7
.github/workflows/install.yaml
vendored
@ -30,7 +30,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
vm: [centos-7, rocky-8, rocky-9, fedora, opensuse-leap, ubuntu-focal]
|
vm: [centos-7, rocky-8, rocky-9, fedora, opensuse-leap, ubuntu-2204]
|
||||||
max-parallel: 2
|
max-parallel: 2
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
@ -47,7 +47,7 @@ jobs:
|
|||||||
path: |
|
path: |
|
||||||
~/.vagrant.d/boxes
|
~/.vagrant.d/boxes
|
||||||
~/.vagrant.d/gems
|
~/.vagrant.d/gems
|
||||||
key: install-${{ hashFiles(format('tests/install/{0}/Vagrantfile', matrix.vm)) }}
|
key: vagrant-box-${{ matrix.vm }}
|
||||||
id: vagrant-cache
|
id: vagrant-cache
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
- name: "Vagrant Plugin(s)"
|
- name: "Vagrant Plugin(s)"
|
||||||
@ -65,6 +65,9 @@ jobs:
|
|||||||
vagrant scp k3s /tmp/k3s
|
vagrant scp k3s /tmp/k3s
|
||||||
vagrant ssh -c "sudo mv /tmp/k3s /usr/local/bin/k3s"
|
vagrant ssh -c "sudo mv /tmp/k3s /usr/local/bin/k3s"
|
||||||
vagrant provision --provision-with=k3s-upload
|
vagrant provision --provision-with=k3s-upload
|
||||||
|
- name: Add binary to PATH
|
||||||
|
if: matrix.vm == 'centos-7' || matrix.vm == 'rocky-8' || matrix.vm == 'rocky-9' || matrix.vm == 'opensuse-leap'
|
||||||
|
run: vagrant provision --provision-with=add-bin-path
|
||||||
- name: "⏩ Install K3s"
|
- name: "⏩ Install K3s"
|
||||||
run: |
|
run: |
|
||||||
vagrant provision --provision-with=k3s-prepare
|
vagrant provision --provision-with=k3s-prepare
|
||||||
|
12
.github/workflows/nightly-install.yaml
vendored
12
.github/workflows/nightly-install.yaml
vendored
@ -15,13 +15,9 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
channel: [stable]
|
channel: [stable, latest]
|
||||||
vm: [centos-7, rocky-8, fedora, opensuse-leap, ubuntu-focal]
|
vm: [rocky-8, fedora, opensuse-leap, ubuntu-2204]
|
||||||
include:
|
max-parallel: 4
|
||||||
- {channel: latest, vm: rocky-8}
|
|
||||||
- {channel: latest, vm: ubuntu-focal}
|
|
||||||
- {channel: latest, vm: opensuse-leap}
|
|
||||||
max-parallel: 2
|
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
working-directory: tests/install/${{ matrix.vm }}
|
working-directory: tests/install/${{ matrix.vm }}
|
||||||
@ -37,7 +33,7 @@ jobs:
|
|||||||
path: |
|
path: |
|
||||||
~/.vagrant.d/boxes
|
~/.vagrant.d/boxes
|
||||||
~/.vagrant.d/gems
|
~/.vagrant.d/gems
|
||||||
key: install-${{ matrix.vm }}-${{ hashFiles('tests/install/${{ matrix.vm }}/Vagrantfile') }}
|
key: vagrant-box-${{ matrix.vm }}
|
||||||
id: vagrant-cache
|
id: vagrant-cache
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
- name: "Vagrant Plugin(s)"
|
- name: "Vagrant Plugin(s)"
|
||||||
|
2
.github/workflows/snapshotter.yaml
vendored
2
.github/workflows/snapshotter.yaml
vendored
@ -56,7 +56,7 @@ jobs:
|
|||||||
path: |
|
path: |
|
||||||
~/.vagrant.d/boxes
|
~/.vagrant.d/boxes
|
||||||
~/.vagrant.d/gems
|
~/.vagrant.d/gems
|
||||||
key: snapshotter-${{ hashFiles(format('tests/snapshotter/{0}/{1}/Vagrantfile', matrix.snapshotter, matrix.vm)) }}
|
key: vagrant-box-${{ matrix.vm }}
|
||||||
id: vagrant-cache
|
id: vagrant-cache
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
- name: "Vagrant Plugin(s)"
|
- name: "Vagrant Plugin(s)"
|
||||||
|
132
tests/cgroup/unified/fedora/Vagrantfile
vendored
132
tests/cgroup/unified/fedora/Vagrantfile
vendored
@ -1,132 +0,0 @@
|
|||||||
# -*- mode: ruby -*-
|
|
||||||
# vi: set ft=ruby :
|
|
||||||
#
|
|
||||||
# Vagrant box for testing k3s with cgroup v2.
|
|
||||||
|
|
||||||
ENV['TEST_UNITFILE_ROOTFULL'] ||= '../../../../k3s.service'
|
|
||||||
ENV['TEST_UNITFILE_ROOTLESS'] ||= '../../../../k3s-rootless.service'
|
|
||||||
|
|
||||||
Vagrant.configure("2") do |config|
|
|
||||||
config.vagrant.plugins = {
|
|
||||||
'vagrant-k3s' => {:version => '~> 0.1.3'},
|
|
||||||
}
|
|
||||||
config.vm.box = "generic/fedora37"
|
|
||||||
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
|
||||||
config.vm.synced_folder '../../../../dist/artifacts', '/vagrant', type: 'rsync', disabled: false,
|
|
||||||
rsync__exclude: ENV['RSYNC_EXCLUDE'] || '*.tar.*'
|
|
||||||
|
|
||||||
config.vm.define 'cgroup-unified', primary: true do |test|
|
|
||||||
test.vm.hostname = 'smoke'
|
|
||||||
test.vm.provision "disable-firewall", type: "shell", inline: "systemctl stop firewalld && systemctl disable firewalld"
|
|
||||||
test.vm.provision :file, run: 'always', source: ENV['TEST_UNITFILE_ROOTFULL'], destination: 'k3s-rootfull.service'
|
|
||||||
test.vm.provision :file, run: 'always', source: ENV['TEST_UNITFILE_ROOTLESS'], destination: 'k3s-rootless.service'
|
|
||||||
test.vm.provision 'k3s-prepare', type: "shell", run: ENV['CI'] == 'true' ? 'never' : 'once', privileged: true do |sh|
|
|
||||||
sh.inline = <<~SHELL
|
|
||||||
#!/usr/bin/env bash
|
|
||||||
set -eux -o pipefail
|
|
||||||
|
|
||||||
# Install k3s binary
|
|
||||||
install -vm 755 /vagrant/k3s /usr/local/bin
|
|
||||||
|
|
||||||
# Install k3s SELinux policy
|
|
||||||
dnf install -y https://github.com/k3s-io/k3s-selinux/releases/download/v1.2.stable.2/k3s-selinux-1.2-2.el8.noarch.rpm
|
|
||||||
|
|
||||||
# Install k3s systemd service (not launched here)
|
|
||||||
install -vm 644 -T /home/vagrant/k3s-rootfull.service /etc/systemd/system/k3s-server.service
|
|
||||||
touch /etc/systemd/system/k3s-server.service.env
|
|
||||||
systemctl daemon-reload
|
|
||||||
|
|
||||||
# Install sonobuoy binary
|
|
||||||
SONOBUOY_VER=0.56.16
|
|
||||||
curl -fsSL https://github.com/vmware-tanzu/sonobuoy/releases/download/v"$SONOBUOY_VER"/sonobuoy_"$SONOBUOY_VER"_linux_amd64.tar.gz | tar xzvC /usr/local/bin sonobuoy
|
|
||||||
|
|
||||||
# [Rootless] Configure sysctl
|
|
||||||
dnf install -y fuse-overlayfs fuse
|
|
||||||
echo "net.ipv4.ip_forward=1" > /etc/sysctl.d/rootless.conf
|
|
||||||
sysctl --system
|
|
||||||
# [Rootless] Enable cgroup v2 delegation
|
|
||||||
mkdir -p /etc/systemd/system/user@.service.d
|
|
||||||
cat <<-EOF > /etc/systemd/system/user@.service.d/delegate.conf
|
|
||||||
[Service]
|
|
||||||
Delegate=yes
|
|
||||||
EOF
|
|
||||||
|
|
||||||
systemctl daemon-reload
|
|
||||||
|
|
||||||
# [Rootless] Enable systemd lingering
|
|
||||||
loginctl enable-linger vagrant
|
|
||||||
|
|
||||||
# [Rootless] Install k3s-rootless systemd service (not launched here)
|
|
||||||
mkdir -p /home/vagrant/.config/systemd/user
|
|
||||||
cp -f /home/vagrant/k3s-rootless.service /home/vagrant/.config/systemd/user/k3s-rootless.service
|
|
||||||
chown -R vagrant:vagrant /home/vagrant/.config
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
|
|
||||||
test.vm.provision 'k3s-install', type: 'k3s', run: ENV['CI'] == 'true' ? 'never' : 'once' do |k3s|
|
|
||||||
k3s.args = %w[server]
|
|
||||||
k3s.env = %w[INSTALL_K3S_NAME=server INSTALL_K3S_SKIP_DOWNLOAD=true K3S_TOKEN=vagrant INSTALL_K3S_SKIP_ENABLE=true]
|
|
||||||
k3s.config = <<~YAML
|
|
||||||
disable:
|
|
||||||
- local-storage
|
|
||||||
- metrics-server
|
|
||||||
- servicelb
|
|
||||||
- traefik
|
|
||||||
disable-helm-controller: true
|
|
||||||
disable-network-policy: true
|
|
||||||
write-kubeconfig-mode: '0644'
|
|
||||||
YAML
|
|
||||||
k3s.config_mode = '0644' # side-step https://github.com/k3s-io/k3s/issues/4321
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-start", type: "shell", run: ENV['CI'] == 'true' ? 'never' : 'once' do |sh|
|
|
||||||
sh.inline = "systemctl start k3s-server"
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-ready", 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",
|
|
||||||
:KUBECONFIG => ENV['TEST_KUBECONFIG'] || '/etc/rancher/k3s/k3s.yaml',
|
|
||||||
}
|
|
||||||
sh.inline = <<~SHELL
|
|
||||||
#!/usr/bin/env bash
|
|
||||||
set -eu -o pipefail
|
|
||||||
echo 'Waiting for node to be ready ...'
|
|
||||||
time timeout 500 bash -c 'while ! (kubectl wait --for condition=ready node/$(hostname) 2>/dev/null); do sleep 5; done'
|
|
||||||
time timeout 500 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/coredns 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-status", 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",
|
|
||||||
:KUBECONFIG => ENV['TEST_KUBECONFIG'] || '/etc/rancher/k3s/k3s.yaml',
|
|
||||||
}
|
|
||||||
sh.inline = <<~SHELL
|
|
||||||
#!/usr/bin/env bash
|
|
||||||
set -eux -o pipefail
|
|
||||||
kubectl get node,all -A -o wide
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-sonobuoy", 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",
|
|
||||||
:KUBECONFIG => ENV['TEST_KUBECONFIG'] || '/etc/rancher/k3s/k3s.yaml',
|
|
||||||
:RESULTS_PATH => ENV['TEST_RESULTS_PATH'] || '.',
|
|
||||||
}
|
|
||||||
sh.inline = <<~SHELL
|
|
||||||
#!/usr/bin/env bash
|
|
||||||
set -eux -o pipefail
|
|
||||||
sonobuoy run --mode=quick --wait
|
|
||||||
sonobuoy retrieve ${RESULTS_PATH}
|
|
||||||
sonobuoy results $(ls -rt ${RESULTS_PATH}/*.tar.gz | tail -1) | grep Status | grep passed
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
config.vm.provision 'selinux-status', type: 'shell', run: 'once', inline: 'sestatus'
|
|
||||||
|
|
||||||
%w[libvirt virtualbox].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
|
|
||||||
end
|
|
@ -14,7 +14,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// Valid nodeOS:
|
// Valid nodeOS:
|
||||||
// generic/ubuntu2004, generic/centos7, generic/rocky8, opensuse/Leap-15.4.x86_64
|
// generic/ubuntu2004, generic/centos7, generic/rocky8, opensuse/Leap-15.5.x86_64
|
||||||
|
|
||||||
var nodeOS = flag.String("nodeOS", "generic/ubuntu2004", "VM operating system")
|
var nodeOS = flag.String("nodeOS", "generic/ubuntu2004", "VM operating system")
|
||||||
var serverCount = flag.Int("serverCount", 3, "number of server nodes")
|
var serverCount = flag.Int("serverCount", 3, "number of server nodes")
|
||||||
|
94
tests/install/centos-7/Vagrantfile
vendored
94
tests/install/centos-7/Vagrantfile
vendored
@ -5,15 +5,17 @@
|
|||||||
ENV['TEST_INSTALL_SH'] ||= '../../../install.sh'
|
ENV['TEST_INSTALL_SH'] ||= '../../../install.sh'
|
||||||
|
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
config.vagrant.plugins = {
|
config.vagrant.plugins = ["vagrant-k3s"]
|
||||||
'vagrant-k3s' => {:version => '~> 0.1.3'},
|
config.vm.box = "generic/centos7"
|
||||||
}
|
|
||||||
config.vm.box = "dweomer/centos-7.9-amd64"
|
|
||||||
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
||||||
config.vm.synced_folder '.', '/vagrant', disabled: true
|
config.vm.synced_folder '.', '/vagrant', disabled: true
|
||||||
|
|
||||||
|
# Load in helper functions
|
||||||
|
load "../install_util.rb"
|
||||||
|
|
||||||
config.vm.define 'install-centos-7', primary: true do |test|
|
config.vm.define 'install-centos-7', primary: true do |test|
|
||||||
test.vm.hostname = 'smoke'
|
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'
|
test.vm.provision 'k3s-upload', type: 'file', run: 'always', source: ENV['TEST_INSTALL_SH'], destination: 'install.sh'
|
||||||
test.vm.provision 'k3s-install', type: 'k3s', run: 'once' do |k3s|
|
test.vm.provision 'k3s-install', type: 'k3s', run: 'once' do |k3s|
|
||||||
k3s.installer_url = 'file:///home/vagrant/install.sh'
|
k3s.installer_url = 'file:///home/vagrant/install.sh'
|
||||||
@ -25,76 +27,22 @@ Vagrant.configure("2") do |config|
|
|||||||
selinux: true
|
selinux: true
|
||||||
token: 'vagrant'
|
token: 'vagrant'
|
||||||
YAML
|
YAML
|
||||||
k3s.config_mode = '0644' # side-step https://github.com/k3s-io/k3s/issues/4321
|
|
||||||
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/$(hostname) 2>/dev/null); do sleep 5; done'
|
|
||||||
kubectl get node,all -A -o wide
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-coredns", 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
|
|
||||||
function describe-coredns {
|
|
||||||
RC=$?
|
|
||||||
if [[ $RC -ne 0 ]]; then
|
|
||||||
kubectl describe node
|
|
||||||
kubectl --namespace kube-system describe pod -l k8s-app=kube-dns
|
|
||||||
kubectl --namespace kube-system logs -l k8s-app=kube-dns
|
|
||||||
fi
|
|
||||||
exit $RC
|
|
||||||
}
|
|
||||||
trap describe-coredns EXIT
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/coredns 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-local-storage", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/local-path-provisioner 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-metrics-server", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/metrics-server 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-traefik", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/traefik 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-status", 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 -eux -o pipefail
|
|
||||||
kubectl get node,all -A -o wide
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-procps", 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 -eux -o pipefail
|
|
||||||
ps auxZ | grep -E 'k3s|kube|container' | grep -v grep
|
|
||||||
SHELL
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
waitForNodeReady(test.vm)
|
||||||
|
|
||||||
|
waitForCoreDns(test.vm)
|
||||||
|
|
||||||
|
waitForLocalStorage(test.vm)
|
||||||
|
|
||||||
|
waitForMetricsServer(test.vm)
|
||||||
|
|
||||||
|
waitForTraefik(test.vm)
|
||||||
|
|
||||||
|
kubectlStatus(test.vm)
|
||||||
|
|
||||||
|
checkK3sProcesses(test.vm)
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
config.vm.provision 'selinux-status', type: 'shell', run: 'once', inline: 'sestatus'
|
config.vm.provision 'selinux-status', type: 'shell', run: 'once', inline: 'sestatus'
|
||||||
|
91
tests/install/fedora/Vagrantfile
vendored
91
tests/install/fedora/Vagrantfile
vendored
@ -5,13 +5,14 @@
|
|||||||
ENV['TEST_INSTALL_SH'] ||= '../../../install.sh'
|
ENV['TEST_INSTALL_SH'] ||= '../../../install.sh'
|
||||||
|
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
config.vagrant.plugins = {
|
config.vagrant.plugins = ["vagrant-k3s"]
|
||||||
'vagrant-k3s' => {:version => '~> 0.1.3'},
|
|
||||||
}
|
|
||||||
config.vm.box = 'generic/fedora37'
|
config.vm.box = 'generic/fedora37'
|
||||||
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
||||||
config.vm.synced_folder '.', '/vagrant', disabled: true
|
config.vm.synced_folder '.', '/vagrant', disabled: true
|
||||||
|
|
||||||
|
# Load in helper functions
|
||||||
|
load "../install_util.rb"
|
||||||
|
|
||||||
config.vm.define 'install-fedora', primary: true do |test|
|
config.vm.define 'install-fedora', primary: true do |test|
|
||||||
test.vm.hostname = 'smoke'
|
test.vm.hostname = 'smoke'
|
||||||
test.vm.provision "disable-firewall", type: "shell", inline: "systemctl stop firewalld"
|
test.vm.provision "disable-firewall", type: "shell", inline: "systemctl stop firewalld"
|
||||||
@ -26,76 +27,22 @@ Vagrant.configure("2") do |config|
|
|||||||
selinux: true
|
selinux: true
|
||||||
token: 'vagrant'
|
token: 'vagrant'
|
||||||
YAML
|
YAML
|
||||||
k3s.config_mode = '0644' # side-step https://github.com/k3s-io/k3s/issues/4321
|
|
||||||
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/$(hostname) 2>/dev/null); do sleep 5; done'
|
|
||||||
kubectl get node,all -A -o wide
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-coredns", 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
|
|
||||||
function describe-coredns {
|
|
||||||
RC=$?
|
|
||||||
if [[ $RC -ne 0 ]]; then
|
|
||||||
kubectl describe node
|
|
||||||
kubectl --namespace kube-system describe pod -l k8s-app=kube-dns
|
|
||||||
kubectl --namespace kube-system logs -l k8s-app=kube-dns
|
|
||||||
fi
|
|
||||||
exit $RC
|
|
||||||
}
|
|
||||||
trap describe-coredns EXIT
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/coredns 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-local-storage", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/local-path-provisioner 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-metrics-server", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/metrics-server 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-traefik", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/traefik 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-status", 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 -eux -o pipefail
|
|
||||||
kubectl get node,all -A -o wide
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-procps", 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 -eux -o pipefail
|
|
||||||
ps auxZ | grep -E 'k3s|kube|container' | grep -v grep
|
|
||||||
SHELL
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
waitForNodeReady(test.vm)
|
||||||
|
|
||||||
|
waitForCoreDns(test.vm)
|
||||||
|
|
||||||
|
waitForLocalStorage(test.vm)
|
||||||
|
|
||||||
|
waitForMetricsServer(test.vm)
|
||||||
|
|
||||||
|
waitForTraefik(test.vm)
|
||||||
|
|
||||||
|
kubectlStatus(test.vm)
|
||||||
|
|
||||||
|
checkK3sProcesses(test.vm)
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
config.vm.provision 'selinux-status', type: 'shell', run: 'once', inline: 'sestatus'
|
config.vm.provision 'selinux-status', type: 'shell', run: 'once', inline: 'sestatus'
|
||||||
|
92
tests/install/install_util.rb
Normal file
92
tests/install/install_util.rb
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
def waitForNodeReady(vm)
|
||||||
|
vm.provision "k3s-wait-for-node", type: "shell", run: ENV['CI'] == 'true' ? 'never' : 'once' do |sh|
|
||||||
|
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/$(hostname) 2>/dev/null); do sleep 5; done'
|
||||||
|
kubectl get node,all -A -o wide
|
||||||
|
SHELL
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def waitForCoreDns(vm)
|
||||||
|
vm.provision "k3s-wait-for-coredns", type: "shell", run: ENV['CI'] == 'true' ? 'never' : 'once' do |sh|
|
||||||
|
sh.inline = <<~SHELL
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -eu -o pipefail
|
||||||
|
function describe-coredns {
|
||||||
|
RC=$?
|
||||||
|
if [[ $RC -ne 0 ]]; then
|
||||||
|
kubectl describe node
|
||||||
|
kubectl --namespace kube-system describe pod -l k8s-app=kube-dns
|
||||||
|
kubectl --namespace kube-system logs -l k8s-app=kube-dns
|
||||||
|
fi
|
||||||
|
exit $RC
|
||||||
|
}
|
||||||
|
trap describe-coredns EXIT
|
||||||
|
time timeout 120 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/coredns 2>/dev/null); do sleep 5; done'
|
||||||
|
SHELL
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def waitForLocalStorage(vm)
|
||||||
|
vm.provision "k3s-wait-for-local-storage", type: "shell", run: ENV['CI'] == 'true' ? 'never' : 'once' do |sh|
|
||||||
|
sh.inline = <<~SHELL
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -eu -o pipefail
|
||||||
|
time timeout 120 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/local-path-provisioner 2>/dev/null); do sleep 5; done'
|
||||||
|
SHELL
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# Metrics takes the longest to start, so we give it 3 minutes
|
||||||
|
def waitForMetricsServer(vm)
|
||||||
|
vm.provision "k3s-wait-for-metrics-server", type: "shell", run: ENV['CI'] == 'true' ? 'never' : 'once' do |sh|
|
||||||
|
sh.inline = <<~SHELL
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -eu -o pipefail
|
||||||
|
time timeout 180 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/metrics-server 2>/dev/null); do sleep 5; done'
|
||||||
|
SHELL
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def waitForTraefik(vm)
|
||||||
|
vm.provision "k3s-wait-for-traefik", type: "shell", run: ENV['CI'] == 'true' ? 'never' : 'once' do |sh|
|
||||||
|
sh.inline = <<~SHELL
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -eu -o pipefail
|
||||||
|
time timeout 120 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/traefik 2>/dev/null); do sleep 5; done'
|
||||||
|
SHELL
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def kubectlStatus(vm)
|
||||||
|
vm.provision "k3s-status", type: "shell", run: ENV['CI'] == 'true' ? 'never' : 'once' do |sh|
|
||||||
|
sh.inline = <<~SHELL
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -eux -o pipefail
|
||||||
|
kubectl get node,all -A -o wide
|
||||||
|
SHELL
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def checkK3sProcesses(vm)
|
||||||
|
vm.provision "k3s-procps", type: "shell", run: ENV['CI'] == 'true' ? 'never' : 'once' do |sh|
|
||||||
|
sh.inline = <<~SHELL
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -eux -o pipefail
|
||||||
|
ps auxZ | grep -E 'k3s|kube|container' | grep -v grep
|
||||||
|
SHELL
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def checkCGroupV2(vm)
|
||||||
|
vm.provision "cgroupv2", type: "shell", run: ENV['CI'] == 'true' ? 'never' : 'once' do |sh|
|
||||||
|
sh.inline = <<~SHELL
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -eux -o pipefail
|
||||||
|
k3s check-config | grep 'cgroups V2 mounted'
|
||||||
|
SHELL
|
||||||
|
end
|
||||||
|
end
|
83
tests/install/opensuse-leap/Vagrantfile
vendored
83
tests/install/opensuse-leap/Vagrantfile
vendored
@ -5,15 +5,17 @@
|
|||||||
ENV['TEST_INSTALL_SH'] ||= '../../../install.sh'
|
ENV['TEST_INSTALL_SH'] ||= '../../../install.sh'
|
||||||
|
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
config.vagrant.plugins = {
|
config.vagrant.plugins = ["vagrant-k3s"]
|
||||||
'vagrant-k3s' => {:version => '~> 0.1.3'},
|
config.vm.box = 'opensuse/Leap-15.5.x86_64'
|
||||||
}
|
|
||||||
config.vm.box = 'opensuse/Leap-15.4.x86_64'
|
|
||||||
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
||||||
config.vm.synced_folder '.', '/vagrant', disabled: true
|
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|
|
config.vm.define 'install-opensuse-leap', primary: true do |test|
|
||||||
test.vm.hostname = 'smoke'
|
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'
|
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
|
# /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-prepare', type: 'shell', run: 'once', inline: 'zypper install -y apparmor-parser'
|
||||||
@ -27,8 +29,8 @@ Vagrant.configure("2") do |config|
|
|||||||
k3s.config = <<~YAML
|
k3s.config = <<~YAML
|
||||||
token: 'vagrant'
|
token: 'vagrant'
|
||||||
YAML
|
YAML
|
||||||
k3s.config_mode = '0644' # side-step https://github.com/k3s-io/k3s/issues/4321
|
|
||||||
end
|
end
|
||||||
|
|
||||||
test.vm.provision "k3s-wait-for-node", type: "shell", run: ENV['CI'] == 'true' ? 'never' : 'once' do |sh|
|
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.env = { :PATH => "/usr/local/bin:/usr/local/sbin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin" }
|
||||||
sh.inline = <<~SHELL
|
sh.inline = <<~SHELL
|
||||||
@ -39,64 +41,19 @@ Vagrant.configure("2") do |config|
|
|||||||
kubectl get node,all -A -o wide
|
kubectl get node,all -A -o wide
|
||||||
SHELL
|
SHELL
|
||||||
end
|
end
|
||||||
test.vm.provision "k3s-wait-for-coredns", 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" }
|
waitForCoreDns(test.vm)
|
||||||
sh.inline = <<~SHELL
|
|
||||||
#!/usr/bin/env bash
|
waitForLocalStorage(test.vm)
|
||||||
set -eu -o pipefail
|
|
||||||
function describe-coredns {
|
waitForMetricsServer(test.vm)
|
||||||
RC=$?
|
|
||||||
if [[ $RC -ne 0 ]]; then
|
waitForTraefik(test.vm)
|
||||||
kubectl describe node
|
|
||||||
kubectl --namespace kube-system describe pod -l k8s-app=kube-dns
|
kubectlStatus(test.vm)
|
||||||
kubectl --namespace kube-system logs -l k8s-app=kube-dns
|
|
||||||
fi
|
checkK3sProcesses(test.vm)
|
||||||
exit $RC
|
|
||||||
}
|
|
||||||
trap describe-coredns EXIT
|
|
||||||
timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/coredns); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-local-storage", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/local-path-provisioner 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-metrics-server", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/metrics-server 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-traefik", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/traefik 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-status", 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 -eux -o pipefail
|
|
||||||
kubectl get node,all -A -o wide
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-procps", 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 -eux -o pipefail
|
|
||||||
ps auxZ | grep -E 'k3s|kube|container' | grep -v grep
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
%w[libvirt virtualbox vmware_desktop].each do |p|
|
%w[libvirt virtualbox vmware_desktop].each do |p|
|
||||||
|
5
tests/install/opensuse-microos/Vagrantfile
vendored
5
tests/install/opensuse-microos/Vagrantfile
vendored
@ -5,10 +5,7 @@
|
|||||||
ENV['TEST_INSTALL_SH'] ||= '../../../install.sh'
|
ENV['TEST_INSTALL_SH'] ||= '../../../install.sh'
|
||||||
|
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
config.vagrant.plugins = {
|
config.vagrant.plugins = ["vagrant-k3s", "vagrant-reload"]
|
||||||
'vagrant-k3s' => {:version => '~> 0.1.3'},
|
|
||||||
'vagrant-reload' => {},
|
|
||||||
}
|
|
||||||
config.vm.box = 'dweomer/microos.amd64'
|
config.vm.box = 'dweomer/microos.amd64'
|
||||||
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
||||||
config.vm.synced_folder '.', '/vagrant', disabled: true
|
config.vm.synced_folder '.', '/vagrant', disabled: true
|
||||||
|
90
tests/install/rocky-8/Vagrantfile
vendored
90
tests/install/rocky-8/Vagrantfile
vendored
@ -5,16 +5,18 @@
|
|||||||
ENV['TEST_INSTALL_SH'] ||= '../../../install.sh'
|
ENV['TEST_INSTALL_SH'] ||= '../../../install.sh'
|
||||||
|
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
config.vagrant.plugins = {
|
config.vagrant.plugins = ["vagrant-k3s"]
|
||||||
'vagrant-k3s' => {:version => '~> 0.1.3'},
|
|
||||||
}
|
|
||||||
config.vm.box = "generic/rocky8"
|
config.vm.box = "generic/rocky8"
|
||||||
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
||||||
config.vm.synced_folder '.', '/vagrant', disabled: true
|
config.vm.synced_folder '.', '/vagrant', disabled: true
|
||||||
|
|
||||||
|
# Load in helper functions
|
||||||
|
load "../install_util.rb"
|
||||||
|
|
||||||
config.vm.define 'install-rocky-8', primary: true do |test|
|
config.vm.define 'install-rocky-8', primary: true do |test|
|
||||||
test.vm.hostname = 'smoke'
|
test.vm.hostname = 'smoke'
|
||||||
test.vm.provision "disable-firewall", type: "shell", inline: "systemctl stop firewalld"
|
test.vm.provision "disable-firewall", type: "shell", inline: "systemctl stop firewalld"
|
||||||
|
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'
|
test.vm.provision 'k3s-upload', type: 'file', run: 'always', source: ENV['TEST_INSTALL_SH'], destination: 'install.sh'
|
||||||
test.vm.provision 'k3s-install', type: 'k3s', run: 'once' do |k3s|
|
test.vm.provision 'k3s-install', type: 'k3s', run: 'once' do |k3s|
|
||||||
k3s.installer_url = 'file:///home/vagrant/install.sh'
|
k3s.installer_url = 'file:///home/vagrant/install.sh'
|
||||||
@ -28,74 +30,20 @@ Vagrant.configure("2") do |config|
|
|||||||
YAML
|
YAML
|
||||||
k3s.config_mode = '0644' # side-step https://github.com/k3s-io/k3s/issues/4321
|
k3s.config_mode = '0644' # side-step https://github.com/k3s-io/k3s/issues/4321
|
||||||
end
|
end
|
||||||
test.vm.provision "k3s-wait-for-node", type: "shell", run: ENV['CI'] == 'true' ? 'never' : 'once' do |sh|
|
waitForNodeReady(test.vm)
|
||||||
sh.env = { :PATH => "/usr/local/bin:/usr/local/sbin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin" }
|
|
||||||
sh.inline = <<~SHELL
|
waitForCoreDns(test.vm)
|
||||||
#!/usr/bin/env bash
|
|
||||||
set -eu -o pipefail
|
waitForLocalStorage(test.vm)
|
||||||
echo 'Waiting for node to be ready ...'
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl wait --for condition=ready node/$(hostname) 2>/dev/null); do sleep 5; done'
|
waitForMetricsServer(test.vm)
|
||||||
kubectl get node,all -A -o wide
|
|
||||||
SHELL
|
waitForTraefik(test.vm)
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-coredns", type: "shell", run: ENV['CI'] == 'true' ? 'never' : 'once' do |sh|
|
kubectlStatus(test.vm)
|
||||||
sh.env = { :PATH => "/usr/local/bin:/usr/local/sbin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin" }
|
|
||||||
sh.inline = <<~SHELL
|
checkK3sProcesses(test.vm)
|
||||||
#!/usr/bin/env bash
|
|
||||||
set -eu -o pipefail
|
|
||||||
function describe-coredns {
|
|
||||||
RC=$?
|
|
||||||
if [[ $RC -ne 0 ]]; then
|
|
||||||
kubectl describe node
|
|
||||||
kubectl --namespace kube-system describe pod -l k8s-app=kube-dns
|
|
||||||
kubectl --namespace kube-system logs -l k8s-app=kube-dns
|
|
||||||
fi
|
|
||||||
exit $RC
|
|
||||||
}
|
|
||||||
trap describe-coredns EXIT
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/coredns 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-local-storage", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/local-path-provisioner 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-metrics-server", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/metrics-server 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-traefik", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/traefik 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-status", 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 -eux -o pipefail
|
|
||||||
kubectl get node,all -A -o wide
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-procps", 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 -eux -o pipefail
|
|
||||||
ps auxZ | grep -E 'k3s|kube|container' | grep -v grep
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
config.vm.provision 'selinux-status', type: 'shell', run: 'once', inline: 'sestatus'
|
config.vm.provision 'selinux-status', type: 'shell', run: 'once', inline: 'sestatus'
|
||||||
|
92
tests/install/rocky-9/Vagrantfile
vendored
92
tests/install/rocky-9/Vagrantfile
vendored
@ -6,16 +6,18 @@ ENV['TEST_INSTALL_SH'] ||= '../../../install.sh'
|
|||||||
ENV['INSTALL_K3S_CHANNEL'] ||= 'testing'
|
ENV['INSTALL_K3S_CHANNEL'] ||= 'testing'
|
||||||
|
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
config.vagrant.plugins = {
|
config.vagrant.plugins = ["vagrant-k3s"]
|
||||||
'vagrant-k3s' => {:version => '~> 0.1.3'},
|
|
||||||
}
|
|
||||||
config.vm.box = "generic/rocky9"
|
config.vm.box = "generic/rocky9"
|
||||||
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
||||||
config.vm.synced_folder '.', '/vagrant', disabled: true
|
config.vm.synced_folder '.', '/vagrant', disabled: true
|
||||||
|
|
||||||
|
# Load in helper functions
|
||||||
|
load "../install_util.rb"
|
||||||
|
|
||||||
config.vm.define 'install-rocky-9', primary: true do |test|
|
config.vm.define 'install-rocky-9', primary: true do |test|
|
||||||
test.vm.hostname = 'smoke'
|
test.vm.hostname = 'smoke'
|
||||||
test.vm.provision "disable-firewall", type: "shell", inline: "systemctl stop firewalld"
|
test.vm.provision "disable-firewall", type: "shell", inline: "systemctl stop firewalld"
|
||||||
|
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'
|
test.vm.provision 'k3s-upload', type: 'file', run: 'always', source: ENV['TEST_INSTALL_SH'], destination: 'install.sh'
|
||||||
test.vm.provision 'k3s-install', type: 'k3s', run: 'once' do |k3s|
|
test.vm.provision 'k3s-install', type: 'k3s', run: 'once' do |k3s|
|
||||||
k3s.installer_url = 'file:///home/vagrant/install.sh'
|
k3s.installer_url = 'file:///home/vagrant/install.sh'
|
||||||
@ -27,76 +29,22 @@ Vagrant.configure("2") do |config|
|
|||||||
selinux: true
|
selinux: true
|
||||||
token: 'vagrant'
|
token: 'vagrant'
|
||||||
YAML
|
YAML
|
||||||
k3s.config_mode = '0644' # side-step https://github.com/k3s-io/k3s/issues/4321
|
|
||||||
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/$(hostname) 2>/dev/null); do sleep 5; done'
|
|
||||||
kubectl get node,all -A -o wide
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-coredns", 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
|
|
||||||
function describe-coredns {
|
|
||||||
RC=$?
|
|
||||||
if [[ $RC -ne 0 ]]; then
|
|
||||||
kubectl describe node
|
|
||||||
kubectl --namespace kube-system describe pod -l k8s-app=kube-dns
|
|
||||||
kubectl --namespace kube-system logs -l k8s-app=kube-dns
|
|
||||||
fi
|
|
||||||
exit $RC
|
|
||||||
}
|
|
||||||
trap describe-coredns EXIT
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/coredns 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-local-storage", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/local-path-provisioner 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-metrics-server", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/metrics-server 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-traefik", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/traefik 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-status", 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 -eux -o pipefail
|
|
||||||
kubectl get node,all -A -o wide
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-procps", 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 -eux -o pipefail
|
|
||||||
ps auxZ | grep -E 'k3s|kube|container' | grep -v grep
|
|
||||||
SHELL
|
|
||||||
end
|
end
|
||||||
|
waitForNodeReady(test.vm)
|
||||||
|
|
||||||
|
waitForCoreDns(test.vm)
|
||||||
|
|
||||||
|
waitForLocalStorage(test.vm)
|
||||||
|
|
||||||
|
waitForMetricsServer(test.vm)
|
||||||
|
|
||||||
|
waitForTraefik(test.vm)
|
||||||
|
|
||||||
|
kubectlStatus(test.vm)
|
||||||
|
|
||||||
|
checkK3sProcesses(test.vm)
|
||||||
|
|
||||||
|
checkCGroupV2(test.vm)
|
||||||
end
|
end
|
||||||
|
|
||||||
config.vm.provision 'selinux-status', type: 'shell', run: 'once', inline: 'sestatus'
|
config.vm.provision 'selinux-status', type: 'shell', run: 'once', inline: 'sestatus'
|
||||||
|
59
tests/install/ubuntu-2204/Vagrantfile
vendored
Normal file
59
tests/install/ubuntu-2204/Vagrantfile
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
# -*- 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 = 'generic/ubuntu2204'
|
||||||
|
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-ubuntu-2204', primary: true do |test|
|
||||||
|
test.vm.hostname = 'smoke'
|
||||||
|
test.vm.provision 'k3s-upload', type: 'file', run: 'always', source: ENV['TEST_INSTALL_SH'], destination: 'install.sh'
|
||||||
|
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
|
||||||
|
|
||||||
|
waitForNodeReady(test.vm)
|
||||||
|
|
||||||
|
waitForCoreDns(test.vm)
|
||||||
|
|
||||||
|
waitForLocalStorage(test.vm)
|
||||||
|
|
||||||
|
waitForMetricsServer(test.vm)
|
||||||
|
|
||||||
|
waitForTraefik(test.vm)
|
||||||
|
|
||||||
|
kubectlStatus(test.vm)
|
||||||
|
|
||||||
|
checkK3sProcesses(test.vm)
|
||||||
|
|
||||||
|
checkCGroupV2(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
|
110
tests/install/ubuntu-focal/Vagrantfile
vendored
110
tests/install/ubuntu-focal/Vagrantfile
vendored
@ -1,110 +0,0 @@
|
|||||||
# -*- mode: ruby -*-
|
|
||||||
# vi: set ft=ruby :
|
|
||||||
#
|
|
||||||
|
|
||||||
ENV['TEST_INSTALL_SH'] ||= '../../../install.sh'
|
|
||||||
|
|
||||||
Vagrant.configure("2") do |config|
|
|
||||||
config.vagrant.plugins = {
|
|
||||||
'vagrant-k3s' => {:version => '~> 0.1.3'},
|
|
||||||
}
|
|
||||||
config.vm.box = 'generic/ubuntu2004'
|
|
||||||
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
|
||||||
config.vm.synced_folder '.', '/vagrant', disabled: true
|
|
||||||
|
|
||||||
config.vm.define 'install-ubuntu-focal', primary: true do |test|
|
|
||||||
test.vm.hostname = 'smoke'
|
|
||||||
test.vm.provision 'k3s-upload', type: 'file', run: 'always', source: ENV['TEST_INSTALL_SH'], destination: 'install.sh'
|
|
||||||
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
|
|
||||||
k3s.config_mode = '0644' # side-step https://github.com/k3s-io/k3s/issues/4321
|
|
||||||
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/$(hostname) 2>/dev/null); do sleep 5; done'
|
|
||||||
kubectl get node,all -A -o wide
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-coredns", 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
|
|
||||||
function describe-coredns {
|
|
||||||
RC=$?
|
|
||||||
if [[ $RC -ne 0 ]]; then
|
|
||||||
kubectl describe node
|
|
||||||
kubectl --namespace kube-system describe pod -l k8s-app=kube-dns
|
|
||||||
kubectl --namespace kube-system logs -l k8s-app=kube-dns
|
|
||||||
fi
|
|
||||||
exit $RC
|
|
||||||
}
|
|
||||||
trap describe-coredns EXIT
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/coredns 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-local-storage", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/local-path-provisioner 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-metrics-server", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/metrics-server 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-wait-for-traefik", 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
|
|
||||||
time timeout 300 bash -c 'while ! (kubectl --namespace kube-system rollout status --timeout 10s deploy/traefik 2>/dev/null); do sleep 5; done'
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-status", 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 -eux -o pipefail
|
|
||||||
kubectl get node,all -A -o wide
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
test.vm.provision "k3s-procps", 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 -eux -o pipefail
|
|
||||||
ps auxZ | grep -E 'k3s|kube|container' | grep -v grep
|
|
||||||
SHELL
|
|
||||||
end
|
|
||||||
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
|
|
@ -5,10 +5,8 @@
|
|||||||
# VAGRANT_EXPERIMENTAL=disks vagrant up
|
# VAGRANT_EXPERIMENTAL=disks vagrant up
|
||||||
|
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
config.vagrant.plugins = {
|
config.vagrant.plugins = ["vagrant-k3s"]
|
||||||
'vagrant-k3s' => {:version => '~> 0.1.3'},
|
config.vm.box = "opensuse/Leap-15.5.x86_64"
|
||||||
}
|
|
||||||
config.vm.box = "opensuse/Leap-15.4.x86_64"
|
|
||||||
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
config.vm.boot_timeout = ENV['TEST_VM_BOOT_TIMEOUT'] || 600 # seconds
|
||||||
config.vm.synced_folder '../../../../dist/artifacts', '/vagrant', type: 'rsync', disabled: false,
|
config.vm.synced_folder '../../../../dist/artifacts', '/vagrant', type: 'rsync', disabled: false,
|
||||||
rsync__exclude: ENV['RSYNC_EXCLUDE'] || '*.tar.*'
|
rsync__exclude: ENV['RSYNC_EXCLUDE'] || '*.tar.*'
|
||||||
|
Loading…
Reference in New Issue
Block a user