mirror of
https://github.com/k8snetworkplumbingwg/multus-cni.git
synced 2026-07-14 22:24:53 +00:00
88 lines
2.8 KiB
YAML
88 lines
2.8 KiB
YAML
name: e2e-kind
|
|
on: [push, pull_request]
|
|
jobs:
|
|
e2e-kind:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- docker-file: images/Dockerfile.thick
|
|
cni-version: "0.3.1"
|
|
multus-manifest: multus-daemonset-thick.yml
|
|
- docker-file: images/Dockerfile
|
|
cni-version: "0.3.1"
|
|
multus-manifest: multus-daemonset.yml
|
|
- docker-file: images/Dockerfile.thick
|
|
cni-version: "0.4.0"
|
|
multus-manifest: multus-daemonset-thick.yml
|
|
- docker-file: images/Dockerfile
|
|
cni-version: "0.4.0"
|
|
multus-manifest: multus-daemonset.yml
|
|
# need to wait kind to support CNI 1.0.0 (now kind 0.11 supports up to 0.4.0)
|
|
# - docker-file: images/Dockerfile.thick
|
|
# cni-version: "1.0.0"
|
|
# multus-manifest: multus-thick-daemonset.yml
|
|
# - docker-file: images/Dockerfile
|
|
# cni-version: "1.0.0"
|
|
# multus-manifest: multus-daemonset.yml
|
|
|
|
if: >
|
|
(( github.event.pull_request.head.repo.owner.login != github.event.pull_request.base.repo.owner.login ) &&
|
|
github.event_name == 'pull_request' ) || (github.event_name == 'push' && github.event.commits != '[]' )
|
|
steps:
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.x
|
|
|
|
- name: Setup j2cli
|
|
run: |
|
|
pip3 install --user --upgrade j2cli
|
|
j2 --version
|
|
|
|
- name: Setup registry
|
|
run: docker run -d --restart=always -p "5000:5000" --name "kind-registry" registry:2
|
|
|
|
- name: Build latest-amd64
|
|
run: docker build -t localhost:5000/multus:e2e -f ${{ matrix.docker-file }} .
|
|
|
|
- name: Push to local registry
|
|
run: docker push localhost:5000/multus:e2e
|
|
|
|
- name: Get kind/kubectl/koko
|
|
working-directory: ./e2e
|
|
run: ./get_tools.sh
|
|
|
|
- name: generate yaml files
|
|
working-directory: ./e2e
|
|
run: env CNI_VERSION=${{ matrix.cni-version }} ./generate_yamls.sh
|
|
|
|
- name: Setup cluster
|
|
working-directory: ./e2e
|
|
run: MULTUS_MANIFEST=${{ matrix.multus-manifest }} ./setup_cluster.sh
|
|
|
|
- name: Test simple pod
|
|
working-directory: ./e2e
|
|
run: ./test-simple-pod.sh
|
|
|
|
- name: Test macvlan1
|
|
working-directory: ./e2e
|
|
run: ./test-simple-macvlan1.sh
|
|
|
|
- name: Test static pod
|
|
working-directory: ./e2e
|
|
run: ./test-static-pod.sh
|
|
|
|
- name: Test default route1
|
|
working-directory: ./e2e
|
|
run: ./test-default-route1.sh
|
|
|
|
- name: cleanup cluster and registry
|
|
run: |
|
|
kind delete cluster
|
|
docker kill kind-registry
|
|
docker rm kind-registry
|