Skip to content

Commit

Permalink
Merge pull request #477 from ksuderman/476-fix-nfs-mounts
Browse files Browse the repository at this point in the history
Fix nfs mounts
  • Loading branch information
nuwang authored Jun 13, 2024
2 parents 15fa77d + 6282540 commit a81ad85
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions galaxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -467,14 +467,16 @@ configs:
load: galaxy.jobs.runners.kubernetes:KubernetesJobRunner
k8s_use_service_account: true
k8s_data_volume_claim: |-
{{ template "galaxy.pvcname" . -}}:{{ .Values.persistence.mountPath -}}:r
{{ template "galaxy.pvcname" . -}}:{{ .Values.persistence.mountPath -}}
k8s_working_volume_claim: |-
{{ template "galaxy.pvcname" . -}}:{{ .Values.persistence.mountPath -}}
k8s_persistent_volume_claims: |-
{{ template "galaxy.pvcname" . -}}/config:{{ .Values.persistence.mountPath -}}/config:r,
{{- template "galaxy.pvcname" . -}}/tmp:{{ .Values.persistence.mountPath -}}/tmp:rw,
{{- template "galaxy.pvcname" . -}}/tool-data:{{ .Values.persistence.mountPath -}}/tool-data:r,
{{- template "galaxy.pvcname" . -}}/tools:{{ .Values.persistence.mountPath -}}/tools:r
{{- template "galaxy.pvcname" . -}}/tool-data:{{ .Values.persistence.mountPath -}}/tool-data:rw,
{{- template "galaxy.pvcname" . -}}/tools:{{ .Values.persistence.mountPath -}}/tools:r,
{{- template "galaxy.pvcname" . -}}/objects:{{ .Values.persistence.mountPath -}}/objects:r,
{{- template "galaxy.pvcname" . -}}/shed_tools:{{ .Values.persistence.mountPath -}}/shed_tools:r
{{- if .Values.refdata.enabled -}}
,{{- template "galaxy.fullname" $ -}}-refdata-gxy-pvc/data.galaxyproject.org:/cvmfs/data.galaxyproject.org:r
{{- end -}}
Expand Down

0 comments on commit a81ad85

Please sign in to comment.