chetna14manku / ci-jobs-trigger

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ci-jobs-trigger

A Flask-based webhook server to trigger ci jobs.

Supported triggering flows:

Build and push container

  • Default image tag is latest, to use a different one set IMAGE_TAG=<tag>
  • Default image quay repository is quay.io/redhat_msi/ci-jobs-trigger, to use a different one set IMAGE_REPOSITORY=<repository>
make build
make push
  • To build and push custom tag and/or repository
IMAGE_TAG="test-image" IMAGE_REPOSITORY="quay.io/my-repo" make push

Development

Setup VirtualEnv

Use poetry to manage virtualenv.

pip install poetry

After installation, run:

poetry install

Execution

To run locally you can export the following environment variables:

poetry install

export FLASK_DEBUG=1  # Optional; to output flask logs to console.
export CI_JOBS_TRIGGER_LISTEN_PORT=5003  # Optional; to set a different port than 5000.
export CI_JOBS_TRIGGER_USE_RELOAD=1  # Optional; to re-load configuration when code is saved.
export CI_JOBS_TRIGGER_LISTEN_IP="0.0.0.0"  # Optional, to listen on all interfaces. Default is localhost only.

poetry run python  ci_jobs_trigger/app.py

Tests

Tests are located under tests dir

Check the code

Code checks tools that are defined in pre-commit-config To install pre-commit:

pip install pre-commit --user
pre-commit install

pre-commit will try to fix the error. If some error where fixed git add & git commit is needed again.

To run the tests and un-used code checks:

make tests

About

License:Apache License 2.0


Languages

Language:Python 98.9%Language:Dockerfile 0.7%Language:Makefile 0.4%