From 2dbe9a6e3e1829f2b8fb3db1daf4494858e4c6ae Mon Sep 17 00:00:00 2001 From: Benjamin Blankenmeister Date: Tue, 9 Jan 2024 15:13:51 -0500 Subject: [PATCH] Fix bugs --- charts/hail-search/Chart.yaml | 2 +- charts/hail-search/values.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/hail-search/Chart.yaml b/charts/hail-search/Chart.yaml index ca7f738b..ab47e227 100644 --- a/charts/hail-search/Chart.yaml +++ b/charts/hail-search/Chart.yaml @@ -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 diff --git a/charts/hail-search/values.yaml b/charts/hail-search/values.yaml index 9795c26e..6c39db75 100644 --- a/charts/hail-search/values.yaml +++ b/charts/hail-search/values.yaml @@ -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 @@ -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