mirror of
https://github.com/kubernetes-sigs/kind.git
synced 2025-11-30 23:16:04 +07:00
128 lines
4.2 KiB
YAML
128 lines
4.2 KiB
YAML
name: VM
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- 'site/**'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
vm:
|
|
name: "VM"
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 30
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
# Fedora is different from Ubuntu in LSM (SELinux), filesystem (btrfs), kernel version, etc.
|
|
- template: fedora
|
|
provider: docker
|
|
rootless: rootful
|
|
- template: fedora
|
|
provider: docker
|
|
rootless: rootless
|
|
- template: fedora
|
|
provider: podman
|
|
rootless: rootful
|
|
- template: fedora
|
|
provider: podman
|
|
rootless: rootless
|
|
# AlmaLinux 8 is used for testing kind with cgroup v1.
|
|
# Do not upgrade this to AlmaLinux 9 until dropping cgroup v1 support.
|
|
- template: almalinux-8
|
|
provider: docker
|
|
rootless: rootful
|
|
env:
|
|
KIND_EXPERIMENTAL_PROVIDER: "${{ matrix.provider }}"
|
|
ROOTLESS: "${{ matrix.rootless }}"
|
|
HELPER: "./hack/ci/lima-helper.sh"
|
|
JOB_NAME: "vm-${{ matrix.template }}-${{ matrix.provider }}-${{ matrix.rootless }}"
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
|
|
|
- name: Get go version
|
|
id: golangversion
|
|
run: |
|
|
echo "go_version=$(cat .go-version)" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Set up Go
|
|
id: go
|
|
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
|
|
with:
|
|
go-version: ${{ steps.golangversion.outputs.go_version }}
|
|
check-latest: true
|
|
|
|
- name: "Install Lima"
|
|
uses: lima-vm/lima-actions/setup@55627e31b78637bf254a8b2a14da8ea7d12564e5 # v1
|
|
id: lima-actions-setup
|
|
|
|
- name: "Cache ~/.cache/lima"
|
|
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
|
|
with:
|
|
path: ~/.cache/lima
|
|
key: lima-${{ steps.lima-actions-setup.outputs.version }}-${{ matrix.template }}
|
|
|
|
- name: "Start VM"
|
|
# --plain is set to disable file sharing, port forwarding, built-in containerd, etc.
|
|
run: limactl start --name=default --plain template://${{ matrix.template }}
|
|
|
|
- name: "Initialize VM"
|
|
run: |
|
|
set -eux -o pipefail
|
|
# Sync the current directory to /tmp/kind in the guest
|
|
limactl cp -r . default:/tmp/kind
|
|
# Install packages
|
|
lima sudo /tmp/kind/hack/ci/init-vm.sh
|
|
# Enable systemd lingering for rootless
|
|
lima sudo loginctl enable-linger "$USER"
|
|
# Install kind
|
|
lima sudo git config --global --add safe.directory /tmp/kind
|
|
lima sudo make -C /tmp/kind install INSTALL_DIR=/usr/bin
|
|
|
|
- name: Set up Rootless Docker
|
|
if: ${{ matrix.provider == 'docker' && matrix.rootless == 'rootless' }}
|
|
run: |
|
|
# Disable the rootful daemon
|
|
"$HELPER" sudo systemctl disable --now docker
|
|
# Install the systemd unit
|
|
"$HELPER" dockerd-rootless-setuptool.sh install
|
|
# Modify the client config to use the rootless daemon by default
|
|
"$HELPER" docker context use rootless
|
|
|
|
- name: Show provider info
|
|
run: |
|
|
"$HELPER" "$KIND_EXPERIMENTAL_PROVIDER" info
|
|
"$HELPER" "$KIND_EXPERIMENTAL_PROVIDER" version
|
|
|
|
- name: Create a cluster
|
|
run: |
|
|
"$HELPER" kind create cluster -v7 --wait 10m --retain
|
|
|
|
- name: Get Cluster status
|
|
run: |
|
|
"$HELPER" kubectl wait --for=condition=ready pods --namespace=kube-system -l k8s-app=kube-dns
|
|
"$HELPER" kubectl get nodes -o wide
|
|
"$HELPER" kubectl get pods -A
|
|
|
|
- name: Export logs
|
|
if: always()
|
|
run: |
|
|
"$HELPER" kind export logs /tmp/kind/logs
|
|
mkdir -p /tmp/kind/logs/lima
|
|
cp -a ~/.lima/default/*.log /tmp/kind/logs/lima || true
|
|
"$HELPER" tar cC /tmp/kind/logs . | tar xC /tmp/kind/logs
|
|
|
|
- name: Upload logs
|
|
if: always()
|
|
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
|
with:
|
|
name: kind-logs-${{ env.JOB_NAME }}-${{ github.run_id }}
|
|
path: /tmp/kind/logs
|