Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
release: v0.5.0
Browse files Browse the repository at this point in the history
* Closes #185

Signed-off-by: Rokas Maciulaitis <rokas.maciulaitis@cern.ch>
  • Loading branch information
Rokas Maciulaitis committed Apr 24, 2019
1 parent d386f56 commit d1e206a
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 12 deletions.
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ The list of contributors in alphabetical order:
- `Dinos Kousidis <https://orcid.org/0000-0002-4914-4289>`_
- `Harri Hirvonsalo <https://orcid.org/0000-0002-5503-510X>`_
- `Jan Okraska <https://orcid.org/0000-0002-1416-3244>`_
- `Rokas Maciulaitis <https://orcid.org/0000-0003-1064-6967>`_
- `Sinclert Perez <https://www.linkedin.com/in/sinclert>`_
- `Tibor Simko <https://orcid.org/0000-0001-7202-5803>`_
17 changes: 17 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
Changes
=======

Version 0.5.0 (2019-04-23)
--------------------------

- Separates cluster infrastructure pods from runtime workflow engine pods that
will be created by workflow controller.
- Adds support for exposing user interactive sessions such as Jupyter notebook
via Traefik ingress controller.
- Introduces configurable CVMFS and CephFS shared volume mounts. Changes
``SHARED_VOLUME_PATH`` to ``/var/reana/``.
- Adds support for optional HTTPS protocol termination at the ``REANA-Server``
component.
- Improves workflow execution queuing and scheduling via ``REANA-Server``
sidecar.
- Removes unused ``REANA-Workflow-Monitor`` component and ``ZeroMQ`` service.
- Enables Flask debugging mode for the cluster development configuration by
setting ``FLASK_ENV`` accordingly.

Version 0.4.0 (2018-11-07)
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
.. image:: https://img.shields.io/travis/reanahub/reana-cluster.svg
:target: https://travis-ci.org/reanahub/reana-cluster

.. image:: https://readthedocs.org/projects/docs/badge/?version=latest
.. image:: https://readthedocs.org/projects/reana-cluster/badge/?version=latest
:target: https://reana-cluster.readthedocs.io/en/latest/?badge=latest

.. image:: https://img.shields.io/coveralls/reanahub/reana-cluster.svg
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

# General information about the project.
project = 'reana'
copyright = '2017, 2018, info@reana.io'
copyright = '2017-2019, info@reana.io'
author = 'info@reana.io'

# The version info for the project you're documenting, acts as replacement for
Expand Down
14 changes: 7 additions & 7 deletions reana_cluster/configurations/reana-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,26 @@ cluster:
components:
reana-workflow-controller:
type: "docker"
image: "reanahub/reana-workflow-controller:v0.4.0-52-g31ece9b"
image: "reanahub/reana-workflow-controller:0.5.0"
environment:
- <<: *db_base_config
- ORGANIZATIONS: "default,alice,atlas,cms,lhcb"
- REANA_WORKFLOW_ENGINE_IMAGE_CWL: "reanahub/reana-workflow-engine-cwl:v0.4.0-20-g065377c"
- REANA_WORKFLOW_ENGINE_IMAGE_YADAGE: "reanahub/reana-workflow-engine-yadage:v0.4.0-15-g4b198e0"
- REANA_WORKFLOW_ENGINE_IMAGE_SERIAL: "reanahub/reana-workflow-engine-serial:v0.4.0-18-g6e7b2b2"
- REANA_WORKFLOW_ENGINE_IMAGE_CWL: "reanahub/reana-workflow-engine-cwl:0.5.0"
- REANA_WORKFLOW_ENGINE_IMAGE_YADAGE: "reanahub/reana-workflow-engine-yadage:0.5.0"
- REANA_WORKFLOW_ENGINE_IMAGE_SERIAL: "reanahub/reana-workflow-engine-serial:0.5.0"

reana-job-controller:
type: "docker"
image: "reanahub/reana-job-controller:0.4.0-17-g9eec312"
image: "reanahub/reana-job-controller:0.5.0"
environment:
- <<: *db_base_config

reana-server:
type: "docker"
image: "reanahub/reana-server:v0.4.0-21-g202e7f3"
image: "reanahub/reana-server:0.5.0"
environment:
- <<: *db_base_config

reana-message-broker:
type: "docker"
image: "reanahub/reana-message-broker:0.4.0"
image: "reanahub/reana-message-broker:0.5.0"
4 changes: 2 additions & 2 deletions reana_cluster/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
#
# This file is part of REANA.
# Copyright (C) 2017, 2018 CERN.
# Copyright (C) 2017, 2018, 2019 CERN.
#
# REANA is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand All @@ -14,4 +14,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.5.0.dev20190301"
__version__ = "0.5.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
'jsonschema[format]>=2.6.0,<2.7',
'kubernetes>=9.0.0',
'PyYAML>=5.1',
'reana-commons[kubernetes]>=0.5.0.dev20190220,<0.6.0',
'reana-commons>=0.5.0,<0.6.0',
'tablib>=0.12.1,<0.13',
'urllib3==1.24.1',
]
Expand Down

0 comments on commit d1e206a

Please sign in to comment.