diff --git a/helm/reana/Chart.yaml b/helm/reana/Chart.yaml index 4723bf0a..ef0f73f4 100644 --- a/helm/reana/Chart.yaml +++ b/helm/reana/Chart.yaml @@ -27,7 +27,7 @@ keywords: - reusable-science type: application # Chart version. -version: 0.9.0-alpha.6 +version: 0.9.0-alpha.7 kubeVersion: ">= 1.19.0-0 < 1.26.0-0" dependencies: - name: traefik diff --git a/helm/reana/values.yaml b/helm/reana/values.yaml index 8d29d980..01c23d85 100644 --- a/helm/reana/values.yaml +++ b/helm/reana/values.yaml @@ -62,12 +62,12 @@ components: docs_url: https://docs.reana.io forum_url: https://forum.reana.io imagePullPolicy: IfNotPresent - image: reanahub/reana-ui:0.9.0-alpha.6 + image: reanahub/reana-ui:0.9.0-alpha.7 reana_db: enabled: true reana_server: imagePullPolicy: IfNotPresent - image: reanahub/reana-server:0.9.0-alpha.6 + image: reanahub/reana-server:0.9.0-alpha.7 environment: REANA_MAX_CONCURRENT_BATCH_WORKFLOWS: 30 REANA_SCHEDULER_REQUEUE_SLEEP: 15 @@ -86,7 +86,7 @@ components: log_5xx: true reana_workflow_controller: imagePullPolicy: IfNotPresent - image: reanahub/reana-workflow-controller:0.9.0-alpha.6 + image: reanahub/reana-workflow-controller:0.9.0-alpha.7 environment: SHARED_VOLUME_PATH: /var/reana REANA_JOB_STATUS_CONSUMER_PREFETCH_COUNT: 10 @@ -99,7 +99,7 @@ components: reana_workflow_engine_snakemake: image: reanahub/reana-workflow-engine-snakemake:0.9.0-alpha.5 reana_job_controller: - image: reanahub/reana-job-controller:0.9.0-alpha.6 + image: reanahub/reana-job-controller:0.9.0-alpha.7 reana_message_broker: imagePullPolicy: IfNotPresent image: reanahub/reana-message-broker:0.9.0-alpha.1 diff --git a/reana/version.py b/reana/version.py index a9dc3bca..db04e213 100644 --- a/reana/version.py +++ b/reana/version.py @@ -13,4 +13,4 @@ from __future__ import absolute_import, print_function -__version__ = "0.9.0a6" +__version__ = "0.9.0a7" diff --git a/scripts/prefetch-images.sh b/scripts/prefetch-images.sh index f346ca43..60d117d8 100755 --- a/scripts/prefetch-images.sh +++ b/scripts/prefetch-images.sh @@ -11,11 +11,11 @@ for image in \ maildev/maildev:1.1.0 \ postgres:12.10 \ redis:5.0.5 \ - reanahub/reana-job-controller:0.9.0-alpha.6 \ + reanahub/reana-job-controller:0.9.0-alpha.7 \ reanahub/reana-message-broker:0.9.0-alpha.1 \ - reanahub/reana-server:0.9.0-alpha.6 \ - reanahub/reana-ui:0.9.0-alpha.6 \ - reanahub/reana-workflow-controller:0.9.0-alpha.6 \ + reanahub/reana-server:0.9.0-alpha.7 \ + reanahub/reana-ui:0.9.0-alpha.7 \ + reanahub/reana-workflow-controller:0.9.0-alpha.7 \ reanahub/reana-workflow-engine-cwl:0.9.0-alpha.5 \ reanahub/reana-workflow-engine-serial:0.9.0-alpha.5 \ reanahub/reana-workflow-engine-snakemake:0.9.0-alpha.5 \