Skip to content

ibutsu/ibutsu-server

Repository files navigation

Ibutsu Server

tests Documentation Status

Ibutsu is a test result reporting and artifact storage system. Ibutsu gives your team the ability to post their test results and artifacts to the server through the API, and query them using the web user interface.

About the API

Ibutsu has a RESTful API built using the OpenAPI specification which is browseable from /api/ui/

Running locally

To run the server locally for development, you can use podman or docker/podman-Compose.

podman

To run Ibutsu using podman, use the ibutsu-pod.sh utility script:

./scripts/ibutsu-pod.sh --create-admin --create-project

This will start up the containers and create an administrator and a project.

If you want to persistent the data in the containers, use the --persistent option:

./scripts/ibutsu-pod.sh --persistent

By default the script stores persistent data in two directories, .postgres-data and .redis-data. If you would prefer to use podman volumes, specify the --use-volumes option:

./scripts/ibutsu-pod.sh --persistent --use-volumes

To see all the options provided by the ibutsu-pod.sh script, use the -h option:

./scripts/ibutsu-pod.sh -h
Usage: ibutsu-pod.sh [-h|--help] [-p|--persistent] [-V|--use-volumes] [-A|--create-admin] [-P|--create-project] [POD_NAME]

optional arguments:
  -h, --help            show this help message
  -p, --persistent      persist the data in the containers
  -V, --use-volumes     use podman volumes to store data
  -A, --create-admin    create an administrator ('[email protected]')
  -P, --create-project  create a default project ('my-project')
  POD_NAME              the name of the pod, 'ibutsu' if ommitted

Docker Compose

There is a pre-created Docker Compose file for running a development environment locally:

docker-compose -f docker-compose.dev.yml up

Without containers

Using either podman or Docker Compose is the recommended way to run Ibutsu locally. If you don't want to use the containers, the following must be installed:

  • Python 3.8+
  • NodeJS
  • yarn
  • redis (strongly recommend a container)
  • PostgreSQL (strongly recommend a container)

Container images

Container images for Ibutsu are provided at quay.io/organization/ibutsu.

Frontend: Frontend Backend: Backend Worker: Worker Scheduler: Scheduler

Documentation

Please visit Ibutsu's Documentation for more information.