-
Notifications
You must be signed in to change notification settings - Fork 782
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial implementation for conform. GH action
Currently, the k8s e2e conformance suite has to be run manually, which is a tedious and time-consuming process. The goal of this PR is to enable engineers to run conformance tests at the click of a button and get the output .tar.gz.
- Loading branch information
1 parent
66176f2
commit 0878635
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: run-conformance-suite | ||
|
||
on: | ||
pull_request | ||
# when complete | ||
# workflow_dispatch: | ||
# inputs: | ||
# channel: | ||
# description: 'Channel to use for MicroK8s' | ||
# required: true | ||
# default: '1.30/stable' | ||
|
||
|
||
jobs: | ||
run-conformance-suite: | ||
name: Run Conformance Suite | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
CHANNEL: 1.30/stable | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: | | ||
sudo snap install go --classic | ||
go install github.com/vmware-tanzu/[email protected] | ||
sudo snap install microk8s --classic --channel $CHANNEL | ||
sudo microk8s status --wait-ready | ||
sudo snap install multipass | ||
sudo multipass start | ||
- name: Generate Join Token | ||
id: get_token | ||
run: echo "WORKER_TOKEN=$(microk8s add-node | grep '^microk8s join .* --worker\$' | awk '{print $3}')" >> "$GITHUB_OUTPUT" | ||
|
||
- name: Launch VM and Join Cluster | ||
env: | ||
TOKEN: ${{ steps.get_token.outputs.WORKER_TOKEN }} | ||
run: | | ||
sudo multipass launch --name microk8s-worker-vm | ||
sudo multipass exec microk8s-worker-vm -- bash -c "sudo snap install microk8s --classic --channel $CHANNEL; sudo microk8s join $TOKEN" |