Skip to content

Commit

Permalink
wise: updates upload and download functionality (#821)
Browse files Browse the repository at this point in the history
feat: wise updates upload and download functionality
  • Loading branch information
icebergtsn authored Jan 3, 2025
1 parent f7a254b commit 78fda8a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ spec:
- mountPath: /www
name: www-dir
- name: wise-init
image: beclab/wise:v1.3.10
image: beclab/wise:v1.3.11
imagePullPolicy: IfNotPresent
command:
- /bin/sh
Expand Down Expand Up @@ -298,7 +298,7 @@ spec:
- name: www-dir
mountPath: /www
- name: wise-download-dir
mountPath: /data/Home/Downloads
mountPath: /data/Home
- name: system-frontend-nginx-config
mountPath: /etc/nginx/nginx.conf
subPath: nginx.conf
Expand Down Expand Up @@ -403,7 +403,7 @@ spec:
- name: wise-download-dir
hostPath:
type: Directory
path: {{ .Values.userspace.userData }}/Downloads
path: {{ .Values.userspace.userData }}
- name: system-frontend-nginx-config
configMap:
name: system-frontend-nginx-config
Expand Down Expand Up @@ -1095,9 +1095,9 @@ data:
proxy_pass http://ArgoworkflowsSever;
}
location ~ ^/download/preview/Downloads/(.*)$
location ~ ^/download/preview/(.*)$
{
alias /data/Home/Downloads/$1;
alias /data/Home/$1;
}
location /videos/ {
Expand Down

0 comments on commit 78fda8a

Please sign in to comment.