Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
bpblanken committed Jan 9, 2024
1 parent 6e7351f commit 2dbe9a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/hail-search/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.19
version: 0.1.20

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 2 additions & 2 deletions charts/hail-search/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ initContainers: |-
name: datasets
- name: mkdir-ssd-{{ $path | replace "/" "-" | replace "_" "-" | lower}}
image: busybox:1.35
command: ['/bin/mkdir', '-p', '{{ $.Values.environment.DATASETS_DIR }}/{{ $path | replace "SV" "SV_WGS" | replace "GCNV" "SV_WES"}}/families']
command: ['/bin/mkdir', '-p', '{{ $.Values.environment.SSD_DATASETS_DIR }}/{{ $path | replace "SV" "SV_WGS" | replace "GCNV" "SV_WES"}}/families']
volumeMounts:
- mountPath: {{ $.Values.environment.SSD_DATASETS_DIR }}
name: ssd-datasets
Expand All @@ -69,7 +69,7 @@ initContainers: |-
name: datasets
- name: sync-families-{{ $path | replace "/" "-" | replace "_" "-" | lower}}
image: gcr.io/google.com/cloudsdktool/google-cloud-cli:latest
command: ['gsutil', '-m', 'rsync', '-r', '{{ $.Values.global.hail_search.sourceDatasetsDir }}/{{ $path }}/runs/{{ $version }}/families', '{{ $.Values.environment.DATASETS_DIR }}/{{ $path | replace "SV" "SV_WGS" | replace "GCNV" "SV_WES"}}/families']
command: ['gsutil', '-m', 'rsync', '-r', '{{ $.Values.global.hail_search.sourceDatasetsDir }}/{{ $path }}/runs/{{ $version }}/families', '{{ $.Values.environment.SSD_DATASETS_DIR }}/{{ $path | replace "SV" "SV_WGS" | replace "GCNV" "SV_WES"}}/families']
volumeMounts:
- mountPath: {{ $.Values.environment.SSD_DATASETS_DIR }}
name: ssd-datasets
Expand Down

0 comments on commit 2dbe9a6

Please sign in to comment.