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

Commit

Permalink
Merge 0ae7334 into dd21756
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinos Kousidis committed Dec 17, 2018
2 parents dd21756 + 0ae7334 commit 3dc1142
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,26 @@ spec:
value: "{{value}}"
{% endfor %}
{% endfor %}
- name: server
image: {{SERVER_IMAGE}}
command: ["flask", "start-scheduler"]
imagePullPolicy: {{IMAGE_PULL_POLICY}}
volumeMounts:
- mountPath: "/reana"
name: reana-shared-volume
{% set mountpoints=RS_MOUNTPOINTS %}
{% for mount in mountpoints %}
- mountPath: {{mount['path'].split(':')[1]}}
name: {{mount['name']}}
{% endfor %}
env:
{% set environment=RS_ENVIRONMENT %}
{% for envvar in environment %}
{% for key, value in envvar.items() %}
- name: {{key}}
value: "{{value}}"
{% endfor %}
{% endfor %}
volumes:
- name: reana-shared-volume
{% if DEPLOYMENT == 'prod' %}
Expand Down

0 comments on commit 3dc1142

Please sign in to comment.