Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ organisation on GitHub, in alphabetical order:
- [Maria Fernando](https://github.com/MMFernando)
- [Markus Zimmermann](https://inspirehep.net/authors/1249806)
- [Matthew Feickert](https://orcid.org/0000-0003-4124-7862)
- [Michael Buchar](https://orcid.org/0009-0009-4804-8525)
- [Michael Eliachevitch](https://orcid.org/0000-0003-2033-537X)
- [Michael R. Crusoe](https://orcid.org/0000-0002-2961-9670)
- [Parth Shandilya](https://github.com/ParthS007)
Expand Down
2 changes: 2 additions & 0 deletions helm/reana/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ collisions.
| `components.reana_workflow_controller.environment.REANA_OPENSEARCH_USE_SSL` | Use SSL when connecting to OpenSearch instance. | true |
| `components.reana_workflow_controller.environment.REANA_OPENSEARCH_CA_CERTS` | Path to a file with OpenSearch root CA certificates. | "/code/certs/ca.crt" |
| `components.reana_workflow_controller.environment.REANA_OPENSEARCH_USER` | OpenSearch user name for Basic Authentication. | reana |
| `components.reana_workflow_controller.environment.WORKSPACE_DISPLAY_FILE_LIMIT` | Maximum number of workspace file entries returned by workspace listing endpoints. | 100000 |
| `components.reana_workflow_controller.environment.FORCE_GARBAGE_COLLECTION` | Comma separated list of operations (`ls`, `list`, `rm`, `delete`) for which to run a manual `gc.collect()` before executing. Leave empty to disable. | "" |
| `components.reana_workflow_engine_cwl.environment` | [REANA-Workflow-Engine-CWL](https://github.com/reanahub/reana-workflow-engine-cwl) environment variables | `{}` |
| `components.reana_workflow_engine_cwl.image` | [REANA-Workflow-Engine-CWL image](https://hub.docker.com/r/reanahub/reana-workflow-engine-cwl) to use | `docker.io/reanahub/reana-workflow-engine-cwl:<chart-release-version>` |
| `components.reana_workflow_engine_serial.environment` | [REANA-Workflow-Engine-Serial](https://github.com/reanahub/reana-workflow-engine-serial) environment variables | `{}` |
Expand Down
2 changes: 2 additions & 0 deletions helm/reana/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ components:
REANA_OPENSEARCH_USE_SSL: true
REANA_OPENSEARCH_CA_CERTS: "/code/certs/ca.crt"
REANA_OPENSEARCH_USER: reana
WORKSPACE_DISPLAY_FILE_LIMIT: 100000
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shall we document the new environment variables in README.md as part of this PR? Or shall we do it later as part of #901?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's do it now so that we don't forget about it :)

FORCE_GARBAGE_COLLECTION: ""
reana_workflow_engine_cwl:
image: docker.io/reanahub/reana-workflow-engine-cwl:0.95.0-alpha.3
environment: {}
Expand Down