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.
92 lines
3.2 KiB
92 lines
3.2 KiB
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 |