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

VC3 Integration #266

Open
wants to merge 9 commits into
base: maint-0.6
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ spec:
{% for mount in mountpoints %}
- mountPath: {{mount['path'].split(':')[1]}}
name: {{mount['name']}}
readOnly: {{ mount['readOnly'] or False }}
{% endfor %}
ports:
- containerPort: 5000
Expand Down
53 changes: 53 additions & 0 deletions reana_cluster/configurations/reana-cluster-vc3.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
cluster:
type: "kubernetes"
version: "v1.14.0"
db_config: &db_base_config
- REANA_DB_NAME: "reana"
- REANA_DB_HOST: "db"
- REANA_DB_PORT: "5432"
root_path: "/reana"
shared_volume_path: &spath "/reana"
db_persistence_path: "/reana/db"
vc3_config: &vc3_user_id
- VC3USERID: "FixMe"

# When deploying a VC3 cluster, these are automatically filled.
user_config: &workflow_user_id
- WORKFLOW_RUNTIME_USER_UID: "FixMe"
- WORKFLOW_RUNTIME_USER_GID: "FixMe"
- WORKFLOW_RUNTIME_USER_NAME: "FixMe"
shared_path: &shared_path
- SHARED_VOLUME_PATH: *spath

components:
reana-workflow-controller:
type: "docker"
image: "khurtado/reana-workflow-controller:vc3v2p2"
mountpoints:
- type: hostPath
name: rjc-temp
path: "/tmp:/tmp"
environment:
- <<: *db_base_config
- <<: *workflow_user_id
- <<: *shared_path
- ORGANIZATIONS: "default,alice,atlas,cms,lhcb"
- REANA_WORKFLOW_ENGINE_IMAGE_CWL: "khurtado/reana-workflow-engine-cwl:vc3v2p2"
- REANA_WORKFLOW_ENGINE_IMAGE_YADAGE: "khurtado/reana-workflow-engine-yadage:vc3v2p2"
- REANA_WORKFLOW_ENGINE_IMAGE_SERIAL: "khurtado/reana-workflow-engine-serial:vc3v2p2"
- REANA_JOB_CONTROLLER_IMAGE: "khurtado/reana-job-controller:vc3v2p2"
# To get HTCondor schedd address: $ condor_status -schedd -af MyAddress
- REANA_JOB_CONTROLLER_VC3_HTCONDOR_ADDR: 'FixMe'
- REANA_JOB_CONTROLLER_HOST_SHARE_TMPDIR: True

reana-server:
type: "docker"
image: "khurtado/reana-server:vc3v2p2"
environment:
- <<: *db_base_config
- <<: *shared_path
- <<: *vc3_user_id

reana-message-broker:
type: "docker"
image: "khurtado/reana-message-broker:latest"