update containerd to 1.7.20 #53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ "main", "dev" ] | |
pull_request: | |
branches: [ "main", "dev" ] | |
workflow_dispatch: | |
jobs: | |
test-control-plane: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test installing Kubernetes control plane node | |
run: sudo ./install-kubernetes.sh -c -v | |
test-worker-node: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test installing Kubernetes worker node | |
run: sudo ./install-kubernetes.sh -v | |
test-single-node: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test installing Kubernetes single node | |
run: sudo ./install-kubernetes.sh -s -v |