Skip to content

rebound-how/actions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Rebound GitHub Actions | The open source toolbox for resilient operations

License

InstallationDocumentation


Rebound is your open-source toolbox to help you building resilient operations.

Actions

lueur

The main action in this repository is the lueur action. It features:

The basic action usage is as follows:

name: Execute a lueur scenario file

on:
  workflow_dispatch:

jobs:
  run-reliability-scenario:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - uses: rebound-how/actions/lueur@main

Store this as a workflow called lueur.yaml.

More information

The Rebound lueur Action has properties which are passed to the underlying script. These are passed to the action using with.

Property Required Default Description
scenario Yes Path to a single lueur scenario file or a directory containing scenario files
report No report.md Path to the file where to store the generated report. The extension determines the type of report generated.
result No result.json Path to the file containing the events and traces from the scenario runs.

Reliably

The main action in this repository is the plan action. It features:

  • Runs Reliably plan from within a GitHub workflow
  • Allows you to keep your sensitive data in a GitHub Environment so that you keep them close to your operations
  • Reports its results back to Reliably
  • Stores the result files (the log and journal) as a commit in the repository
  • Stores a file listing all the licences of all the packages used as part of run within the commit

The basic action usage is as follows:

name: Execute a Reliably Plan

on:
  workflow_dispatch:

jobs:
  execute-reliably-plan:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - uses: rebound-how/actions/reliably@main

Store this as a workflow called reliably-plan.yaml.

More information

The Reliably Plan Action has properties which are passed to the underlying script. These are passed to the action using with.

Property Default Description
python-version "3.11" Run Reliably using this version of Python (3.11+)
github-token GitHub token with enough permissions to commit to the repository. Usually set it with ${{ secrets.GITHUB_TOKEN }}
reliably-service-token Reliably token to authenticate with Reliably services. Usually set it with ${{ secrets.RELIABLY_SERVICE_TOKEN }}
reliably-host The Reliably host. Only useful if you run Reliably on your own host
org-id Reliably organization identifier for this run
plan-id Reliably plan identifier for this run
working-dir "./plans" Repository relative directory where to run the plan from
reliably-experiment-extra A JSOn encoded object loaded by reliably to add to the results
dependencies Various dependencies to install. Comma-separated list from: oha, aws-authenticator, lueur

Various notes

  • The action automatically installs the Reliably CLI and many Chaos Toolkit extensions for you
  • If you create a bin directory at the top of your repository, the action will automatically add it to the PATH if your plan requires access to specific utilities.
  • The action can download:
    • aws-iam-authenticator binary for you so you can authenticate against AWS EKS clusters
    • lueur binary to run a proxy that injects network faults
    • oha binary to run load tests

About

Rebound GitHub actions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published