Derek

Results 3 comments of Derek

Here's how I patched the image for my Docker-based Airflow installation: ``` FROM apache/airflow:3.0.2 RUN sed -i 's/sandbox:"allow-same-origin allow-forms"/sandbox:"allow-scripts allow-same-origin allow-forms"/' /home/airflow/.local/lib/python3.12/site-packages/airflow/ui/dist/assets/index-*.js ``` Like @Jasperora mentioned, this is a quick...

I’m looking at adding new currencies to the codebase and noticed that the UI currently supports only those available in the Frankfurter forex rate API. List of supported currencies: https://api.frankfurter.dev/v1/currencies...

I tested with Rundeck 4.7.0 and CLI 2.0.3 without issues on both actions. The CLI essentially sends a POST request to `/api/29/project//scm/import/action/import-jobs`. The request payload is described here https://docs.rundeck.com/docs/api/rundeck-api.html#perform-project-scm-action. I...