tetragon: Load base sensor via sensor manager #9192
Workflow file for this run
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: Tetragon e2e Test | |
on: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'docs/**' | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
clusterName: tetragon-ci | |
ciliumCliVersion: v0.15.0 | |
jobs: | |
prepare: | |
runs-on: ubuntu-22.04 | |
outputs: | |
packages: ${{ steps.set-packages.outputs.packages }} | |
agentImage: ${{ steps.vars.outputs.agentImage }} | |
operatorImage: ${{ steps.vars.outputs.operatorImage }} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install Go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
with: | |
go-version-file: go.mod | |
- id: set-packages | |
name: Listing e2e tests packages | |
shell: bash | |
run: | | |
echo PACKAGES=$(make ls-e2e-test | jq -Rnc '[inputs | {"s": split("/")[-1], "f":.}]') | tee -a $GITHUB_STEP_SUMMARY | tee -a $GITHUB_OUTPUT | |
- name: Set Up Job Variables | |
id: vars | |
run: | | |
if [ ${{ github.event.issue.pull_request || github.event.pull_request }} ]; then | |
PR_API_JSON=$(curl \ | |
-H "Accept: application/vnd.github.v3+json" \ | |
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \ | |
${{ github.event.issue.pull_request.url || github.event.pull_request.url }}) | |
SHA=$(echo "$PR_API_JSON" | jq -r ".head.sha") | |
else | |
SHA=${{ github.sha }} | |
fi | |
echo "agentImage=quay.io/cilium/tetragon-ci:${SHA}" >> $GITHUB_OUTPUT | |
echo "operatorImage=quay.io/cilium/tetragon-operator-ci:${SHA}" >> $GITHUB_OUTPUT | |
- name: Wait Tetragon Images | |
uses: nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e # v3.0.0 | |
with: | |
timeout_minutes: 2 | |
max_attempts: 30 | |
retry_wait_seconds: 30 | |
warning_on_retry: false | |
command: | | |
set -e | |
docker pull ${{ steps.vars.outputs.agentImage }} | |
docker pull ${{ steps.vars.outputs.operatorImage }} | |
docker rmi ${{ steps.vars.outputs.agentImage }} ${{ steps.vars.outputs.operatorImage }} | |
run-e2e-test: | |
needs: prepare | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 20 | |
name: ${{matrix.os}} / ${{ matrix.package.s }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-22.04, ubuntu-22.04-arm64 ] | |
package: ${{fromJson(needs.prepare.outputs.packages)}} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
path: go/src/github.com/cilium/tetragon/ | |
- name: Install Go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
with: | |
# renovate: datasource=golang-version depName=go | |
go-version: '1.23.2' | |
- name: Install kubectl, kind and cilium CLI | |
uses: alexellis/arkade-get@master | |
with: | |
kubectl: latest | |
helm: v3.12.1 | |
kind: v0.20.0 | |
cilium: ${{ env.ciliumCliVersion }} | |
print-summary: false | |
- name: Pull Tetragon Images | |
uses: nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e # v3.0.0 | |
with: | |
timeout_minutes: 2 | |
max_attempts: 30 | |
retry_wait_seconds: 30 | |
warning_on_retry: false | |
command: | | |
set -e | |
docker pull ${{ needs.prepare.outputs.agentImage }} | |
docker pull ${{ needs.prepare.outputs.operatorImage }} | |
- name: Run e2e Tests | |
env: | |
GHA_OS: ${{matrix.os}} | |
run: | | |
cd go/src/github.com/cilium/tetragon | |
make e2e-test E2E_TESTS=${{matrix.package.f}} E2E_BUILD_IMAGES=0 E2E_AGENT=${{ needs.prepare.outputs.agentImage }} E2E_OPERATOR=${{ needs.prepare.outputs.operatorImage }} EXTRA_TESTFLAGS="-cluster-name=${{ env.clusterName }} -args -v=4" | |
- name: Upload Tetragon Logs | |
if: failure() || cancelled() | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
with: | |
name: tetragon-logs-${{ matrix.os }}-${{ matrix.package.s }} | |
path: /tmp/tetragon.e2e.* | |
retention-days: 5 |