mirror of
https://github.com/kubernetes-sigs/kind.git
synced 2025-11-30 23:16:04 +07:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 5.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](11bd71901b...08c6903cd8)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 5.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
85 lines
2.3 KiB
YAML
85 lines
2.3 KiB
YAML
name: Docker
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- 'site/**'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
docker:
|
|
name: Docker
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 30
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
ipFamily: [ipv4, ipv6]
|
|
deployment: [singleNode, multiNode]
|
|
env:
|
|
JOB_NAME: "docker-${{ matrix.deployment }}-${{ matrix.ipFamily }}"
|
|
IP_FAMILY: ${{ matrix.ipFamily }}
|
|
steps:
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
|
|
- uses: ./.github/actions/setup-env
|
|
|
|
- name: Create single node cluster
|
|
if: ${{ matrix.deployment == 'singleNode' }}
|
|
run: |
|
|
cat <<EOF | /usr/local/bin/kind create cluster -v7 --wait 1m --retain --config=-
|
|
kind: Cluster
|
|
apiVersion: kind.x-k8s.io/v1alpha4
|
|
networking:
|
|
ipFamily: ${IP_FAMILY}
|
|
EOF
|
|
|
|
- name: Create multi node cluster
|
|
if: ${{ matrix.deployment == 'multiNode' }}
|
|
run: |
|
|
cat <<EOF | /usr/local/bin/kind create cluster -v7 --wait 1m --retain --config=-
|
|
kind: Cluster
|
|
apiVersion: kind.x-k8s.io/v1alpha4
|
|
networking:
|
|
ipFamily: ${IP_FAMILY}
|
|
nodes:
|
|
- role: control-plane
|
|
- role: worker
|
|
- role: worker
|
|
EOF
|
|
|
|
- name: Get Cluster status
|
|
run: |
|
|
# wait network is ready
|
|
kubectl wait --for=condition=ready pods --namespace=kube-system -l k8s-app=kube-dns
|
|
kubectl get nodes -o wide
|
|
kubectl get pods -A
|
|
|
|
- name: Load docker image
|
|
run: |
|
|
docker pull busybox
|
|
/usr/local/bin/kind load docker-image busybox
|
|
|
|
- name: Export logs
|
|
if: always()
|
|
run: |
|
|
mkdir -p /tmp/kind/logs
|
|
/usr/local/bin/kind export logs /tmp/kind/logs
|
|
sudo chown -R $USER:$USER /tmp/kind/logs
|
|
|
|
- name: Upload logs
|
|
if: always()
|
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
|
with:
|
|
name: kind-logs-${{ env.JOB_NAME }}-${{ github.run_id }}
|
|
path: /tmp/kind/logs
|
|
|
|
- name: Delete cluster
|
|
run: /usr/local/bin/kind delete cluster
|