Skip to content

Latest commit

 

History

History
49 lines (48 loc) · 2.07 KB

RELEASING.md

File metadata and controls

49 lines (48 loc) · 2.07 KB

Releasing

  1. Checkout your fork and make sure it's up-to-date with the upstream
    $ git remote -v
    origin     [email protected]:<your account>/tracee.git (fetch)
    origin     [email protected]:<your account>/tracee.git (push)
    upstream   [email protected]:aquasecurity/tracee.git (fetch)
    upstream   [email protected]:aquasecurity/tracee.git (push)
    git pull -r
    git fetch upstream
    git merge upstream/main
    git push
    
  2. Prepare release by creating the PR with the following changes
    1. Update the libbpfgo module
    2. Update the types module
    3. Update the container image tag in the following files:
      1. deploy/kubernetes/tracee-falcosidekick/falcosidekick.yaml
      2. deploy/kubernetes/tracee-postee/tracee.yaml
  3. Run tests and checks
    1. Check that there are no verifier issues when choosing all events in tracee-ebpf (using --trace e=*)
    2. Check both CO-RE and non CO-RE builds
    3. Run all unit, integration, and e2e tests
    4. Sanity checks for different special features
      1. capture artifacts (files, memory, net, etc...)
      2. table/json/gob printers output
      3. tracee-ebpf with various filters
    5. Check that docker images build correctly
  4. Run the above tests/checks for three different kernel versions include old kernels (4.18/4.19) and new ones (5.10+)
  5. Review and merge the PR (make sure all tests are passing)
  6. Update your fork again
    git pull -r
    git fetch upstream
    git merge upstream/main
    git push
    
  7. Create an annotated git tag and push it to the upstream. This will trigger the [.github/workflows/release.yaml] workflow
    git tag -v0.8.1 -m 'Release v0.8.1'
    git push upstream v0.8.1
    
  8. Verify that the release workflow has built and published the following artifacts
    1. Tracee binaries (tracee-ebpf, tracee-rules, rules) in the form of a tar archive tracee.<VERSION>.tar.gz
    2. Source code zip and tar files
    3. Docker images pushed to the aquasec/tracee repository (docker.io/aquasec/tracee:<VERSION> and docker.io/aquasec/tracee:full-<VERSION>)