Skip to content

Commit

Permalink
release: 0.8.0-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborsimko committed Jun 24, 2021
1 parent 0d8eb57 commit 35a12ac
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion helm/reana/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ keywords:
- reusable-science
type: application
# Chart version.
version: 0.8.0-alpha.1
version: 0.8.0-alpha.2
kubeVersion: ">= 1.13.0-0 < 1.22.0-0"
dependencies:
- name: traefik
Expand Down
16 changes: 8 additions & 8 deletions helm/reana/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ components:
docs_url: http://docs.reana.io
forum_url: https://forum.reana.io
imagePullPolicy: IfNotPresent
image: reanahub/reana-ui:0.8.0-alpha.1
image: reanahub/reana-ui:0.8.0-alpha.2
reana_db:
enabled: true
reana_server:
imagePullPolicy: IfNotPresent
image: reanahub/reana-server:0.8.0-alpha.1
image: reanahub/reana-server:0.8.0-alpha.2
environment:
REANA_MAX_CONCURRENT_BATCH_WORKFLOWS: 30
REANA_SCHEDULER_REQUEUE_SLEEP: 15
Expand All @@ -68,20 +68,20 @@ components:
threads: 4
reana_workflow_controller:
imagePullPolicy: IfNotPresent
image: reanahub/reana-workflow-controller:0.8.0-alpha.1
image: reanahub/reana-workflow-controller:0.8.0-alpha.2
environment:
SHARED_VOLUME_PATH: /var/reana
reana_workflow_engine_cwl:
image: reanahub/reana-workflow-engine-cwl:0.8.0-alpha.1
image: reanahub/reana-workflow-engine-cwl:0.8.0-alpha.2
reana_workflow_engine_yadage:
image: reanahub/reana-workflow-engine-yadage:0.8.0-alpha.1
image: reanahub/reana-workflow-engine-yadage:0.8.0-alpha.2
reana_workflow_engine_serial:
image: reanahub/reana-workflow-engine-serial:0.8.0-alpha.1
image: reanahub/reana-workflow-engine-serial:0.8.0-alpha.2
reana_job_controller:
image: reanahub/reana-job-controller:0.8.0-alpha.2
image: reanahub/reana-job-controller:0.8.0-alpha.3
reana_message_broker:
imagePullPolicy: IfNotPresent
image: reanahub/reana-message-broker:0.7.1
image: reanahub/reana-message-broker:0.8.0-alpha.1

notifications:
enabled: false
Expand Down
2 changes: 1 addition & 1 deletion reana/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.8.0a1"
__version__ = "0.8.0a2"
18 changes: 9 additions & 9 deletions scripts/prefetch-images.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
#
# This file is part of REANA.
# Copyright (C) 2020 CERN.
# Copyright (C) 2020, 2021 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 @@ -11,14 +11,14 @@ for image in \
postgres:9.6.2 \
redis:5.0.5 \
jupyter/scipy-notebook \
reanahub/reana-job-controller:0.8.0-alpha.2 \
reanahub/reana-message-broker:0.7.0 \
reanahub/reana-server:0.8.0-alpha.1 \
reanahub/reana-ui:0.8.0-alpha.1 \
reanahub/reana-workflow-controller:0.8.0-alpha.1 \
reanahub/reana-workflow-engine-cwl:0.8.0-alpha.1 \
reanahub/reana-workflow-engine-serial:0.8.0-alpha.1 \
reanahub/reana-workflow-engine-yadage:0.8.0-alpha.1; do
reanahub/reana-job-controller:0.8.0-alpha.3 \
reanahub/reana-message-broker:0.8.0-alpha.1 \
reanahub/reana-server:0.8.0-alpha.2 \
reanahub/reana-ui:0.8.0-alpha.2 \
reanahub/reana-workflow-controller:0.8.0-alpha.2 \
reanahub/reana-workflow-engine-cwl:0.8.0-alpha.2 \
reanahub/reana-workflow-engine-serial:0.8.0-alpha.2 \
reanahub/reana-workflow-engine-yadage:0.8.0-alpha.2; do
docker pull $image
kind load docker-image $image
done

0 comments on commit 35a12ac

Please sign in to comment.