diff --git a/CHANGES.rst b/CHANGES.rst index 6642442..b34aac3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changes ======= +Version 0.3.4 (2018-10-10) +-------------------------- + +- Fixes default storage method to use Local instead of CephFS. + Version 0.3.3 (2018-09-27) -------------------------- diff --git a/reana_cluster/configurations/reana-cluster.yaml b/reana_cluster/configurations/reana-cluster.yaml index 7543fd0..2814b73 100644 --- a/reana_cluster/configurations/reana-cluster.yaml +++ b/reana_cluster/configurations/reana-cluster.yaml @@ -25,7 +25,7 @@ components: environment: - <<: *db_base_config - SHARED_VOLUME_PATH: "/reana" - - REANA_STORAGE_BACKEND: "CEPHFS" + - REANA_STORAGE_BACKEND: "LOCAL" reana-server: type: "docker" diff --git a/reana_cluster/version.py b/reana_cluster/version.py index 62b2d7c..5c2ef85 100644 --- a/reana_cluster/version.py +++ b/reana_cluster/version.py @@ -27,4 +27,4 @@ from __future__ import absolute_import, print_function -__version__ = "0.3.3" +__version__ = "0.3.4"