FLOps Addon

Report a Bug or Request a Feature

Go to the FLOps addon repository and create a new Issue.

FLOps Addon Repository

Explore the source code

Linting & Formatting

The FLOps addon repository uses ruff for Python linting and formatting.

Install ruff via pip install ruff.

Use ruff format and ruff check --fix to keep your code compliant.

Local Development

For local development we recommend to clone the FLOps addon repository and to ensure Oakestra and its CLI is running on your machine.

Development Considerations + Tips & Tricks

FlOps’ Repository Images

FLOps uses multiple different pre-build images to power its features. These images are available in its GitHub image/package registry. When modifying these images ensure to build and push them for linux/amd64 and linux/arm64.

We recommend to use the following workflow:

docker buildx create --name flopsbuilder --use

docker buildx build --platform linux/amd64,linux/arm64 \
  --output "type=image,push=true" \
  --tag ghcr.io/oakestra/addon-flops/<image>:<tag> .