Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Data Studios volume mount to backend container #332

Merged
merged 1 commit into from
Dec 12, 2024
Merged
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 @@ -25,7 +25,7 @@ spec:
- name: CONNECT_HTTP_PORT
value: "80"
- name: CONNECT_REDIS_ADDRESS
value: <CONNECT_REDIS_ADDRESS>
value: <CONNECT_REDIS_ADDRESS>:6379
endre-seqera marked this conversation as resolved.
Show resolved Hide resolved
- name: CONNECT_REDIS_PREFIX
value: "connect:session"
- name: CONNECT_REDIS_TLS_ENABLE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ spec:
- name: config-volume
mountPath: /tower.yml
subPath: tower.yml
# Volume mount for Data Studios
#- name: cert-volume
# mountPath: /data/certs
containers:
- name: backend
image: cr.seqera.io/private/nf-tower-enterprise/backend:v24.1.7
Expand All @@ -47,6 +44,9 @@ spec:
- name: config-volume
mountPath: /tower.yml
subPath: tower.yml
# Volume mount for Data Studios
#- name: cert-volume
# mountPath: /data/certs
env:
- name: MICRONAUT_ENVIRONMENTS
value: "prod,redis,cron"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
- name: CONNECT_HTTP_PORT
value: "80"
- name: CONNECT_REDIS_ADDRESS
value: <CONNECT_REDIS_ADDRESS>
value: <CONNECT_REDIS_ADDRESS>:6379
- name: CONNECT_REDIS_PREFIX
value: "connect:session"
- name: CONNECT_REDIS_TLS_ENABLE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ spec:
- name: config-volume
mountPath: /tower.yml
subPath: tower.yml
# Volume mount for Data Studios
#- name: cert-volume
# mountPath: /data/certs
containers:
- name: backend
image: cr.seqera.io/private/nf-tower-enterprise/backend:v24.1.7
Expand All @@ -47,6 +44,9 @@ spec:
- name: config-volume
mountPath: /tower.yml
subPath: tower.yml
# Volume mount for Data Studios
#- name: cert-volume
# mountPath: /data/certs
env:
- name: MICRONAUT_ENVIRONMENTS
value: "prod,redis,cron"
Expand Down
Loading