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

Commit

Permalink
release: v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Rodriguez authored and tiborsimko committed Dec 27, 2019
1 parent 26f8a31 commit c51c086
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 16 deletions.
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ The list of contributors in alphabetical order:
- `Harri Hirvonsalo <https://orcid.org/0000-0002-5503-510X>`_
- `Jan Okraska <https://orcid.org/0000-0002-1416-3244>`_
- `Leticia Wanderley <https://orcid.org/0000-0003-4649-6630>`_
- `Marco Vidal <https://orcid.org/0000-0002-9363-4971>`_
- `Radovan Lascsak <https://orcid.org/0000-0002-8412-5702>`_
- `Rokas Maciulaitis <https://orcid.org/0000-0003-1064-6967>`_
- `Sinclert Perez <https://www.linkedin.com/in/sinclert>`_
Expand Down
20 changes: 20 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
Changes
=======

Version 0.6.0 (2019-12-27)
--------------------------

- Upgrades to Kubernetes 1.16.
- Moves Traefik installation to Helm 3.0.0.
- Creates a new Kubernetes service account for REANA with appropriate
permissions.
- Makes database connection details configurable so that REANA can connect to
databases external to the cluster.
- Adds an interactive mode on cluster initialisation to allow providing
deployment secrets such as OAuth integration, GitLab integration or
external database details.
- Autogenerates deployment secrets if not provided by the administrator at
cluster creation time.
- Adds CERN specific Kerberos configuration files.
- Adds new flag and configuration to optionally deploy with CERN EOS storage.
- Renames ``reana-cluster.yaml`` to ``reana-cluster-minikube.yaml`` for local
developments.
- Adds Python 3.8 support.

Version 0.5.0 (2019-04-24)
--------------------------

Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ Each pull request should preserve or increase code coverage.
Kanban
------

We are using Kanban technique for keeping track of ongoing tasks. Please see our
`Kanban board <https://waffle.io/reanahub/reana>`_ and look for issues that are
labelled as "ready for work".
We are using Kanban technique for keeping track of ongoing tasks. Please see
our `Kanban boards <https://github.com/orgs/reanahub/projects>`_ and look for
issues that are "ready for work".
15 changes: 8 additions & 7 deletions docs/gettingstarted.rst
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Deploy on CERN infrastructure
8. Create your own ``reana-cluster.yaml``. For instance, to deploy REANA
``0.5.0`` at CERN with 200 GB Ceph volume and having as URL
``0.6.0`` at CERN with 200 GB Ceph volume and having as URL
``reana-dev.cern.ch`` the file, ``reana-cluster-CERN.yaml``, would look
like follows:

Expand All @@ -182,22 +182,23 @@ Deploy on CERN infrastructure
components:
reana-workflow-controller:
type: "docker"
image: "reanahub/reana-workflow-controller:0.5.0"
image: "reanahub/reana-workflow-controller:0.6.0"
environment:
- <<: *db_base_config
- 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_IMAGE: "reanahub/reana-job-controller:0.6.0"
- REANA_WORKFLOW_ENGINE_IMAGE_CWL: "reanahub/reana-workflow-engine-cwl:0.6.0"
- REANA_WORKFLOW_ENGINE_IMAGE_YADAGE: "reanahub/reana-workflow-engine-yadage:0.6.0"
- REANA_WORKFLOW_ENGINE_IMAGE_SERIAL: "reanahub/reana-workflow-engine-serial:0.6.0"
reana-server:
type: "docker"
image: "reanahub/reana-server:0.5.0"
image: "reanahub/reana-server:0.6.0"
environment:
- <<: *db_base_config
reana-message-broker:
type: "docker"
image: "reanahub/reana-message-broker:0.5.0"
image: "reanahub/reana-message-broker:0.6.0"
9. Instantiate REANA cluster:
Expand Down
10 changes: 7 additions & 3 deletions reana_cluster/configurations/reana-cluster-minikube.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,21 @@ cluster:
components:
reana-workflow-controller:
type: "docker"
image: "reanahub/reana-workflow-controller:latest"
image: "reanahub/reana-workflow-controller:0.6.0"
environment:
- <<: *db_base_config
- SHARED_VOLUME_PATH: "/var/reana"
- REANA_JOB_CONTROLLER_IMAGE: "reanahub/reana-job-controller:0.6.0"
- REANA_WORKFLOW_ENGINE_IMAGE_CWL: "reanahub/reana-workflow-engine-cwl:0.6.0"
- REANA_WORKFLOW_ENGINE_IMAGE_YADAGE: "reanahub/reana-workflow-engine-yadage:0.6.0"
- REANA_WORKFLOW_ENGINE_IMAGE_SERIAL: "reanahub/reana-workflow-engine-serial:0.6.0"

reana-server:
type: "docker"
image: "reanahub/reana-server:latest"
image: "reanahub/reana-server:0.6.0"
environment:
- <<: *db_base_config

reana-message-broker:
type: "docker"
image: "reanahub/reana-message-broker:latest"
image: "reanahub/reana-message-broker:0.6.0"
2 changes: 1 addition & 1 deletion reana_cluster/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.6.0.dev20190912"
__version__ = "0.6.0"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
history = open('CHANGES.rst').read()

tests_require = [
'pytest-reana>=0.6.0.dev20190705,<0.7.0',
'pytest-reana>=0.6.0,<0.7.0',
]

extras_require = {
Expand All @@ -45,7 +45,7 @@
'click>=7',
'Jinja2>=2.9.6,<2.11',
'PyYAML>=5.1',
'reana-commons[kubernetes]>=0.6.0.dev20190604,<0.7.0',
'reana-commons[kubernetes]>=0.6.0,<0.7.0',
'tablib>=0.12.1,<0.13',
]

Expand Down

0 comments on commit c51c086

Please sign in to comment.