From 598a596978bcad968d8b5cf20aeeff68a55ba944 Mon Sep 17 00:00:00 2001 From: Benjamin Blankenmeister Date: Thu, 5 Oct 2023 17:05:36 -0400 Subject: [PATCH] lowercase --- charts/hail-search/Chart.yaml | 2 +- charts/hail-search/values.yaml | 2 +- charts/seqr/Chart.yaml | 2 +- .../seqr/templates/check-for-new-samples-from-pipeline.yaml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/hail-search/Chart.yaml b/charts/hail-search/Chart.yaml index 8f68bfd3..d0efb6ff 100644 --- a/charts/hail-search/Chart.yaml +++ b/charts/hail-search/Chart.yaml @@ -18,7 +18,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.3 +version: 0.1.4 # 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 3fbc0840..af76138a 100644 --- a/charts/hail-search/values.yaml +++ b/charts/hail-search/values.yaml @@ -30,7 +30,7 @@ environment: initContainers: |- {{- range $path, $version := $.Values.global.hail_search.datasetVersions -}} {{ if $version }} - - name: sync-datasets-{{ $path | replace "/" "-" | replace "_" "-"}} + - name: sync-datasets-{{ $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 }}', '{{ $.Values.environment.DATASETS_DIR }}/{{ $path }}'] volumeMounts: diff --git a/charts/seqr/Chart.yaml b/charts/seqr/Chart.yaml index 49881160..6ded2cac 100644 --- a/charts/seqr/Chart.yaml +++ b/charts/seqr/Chart.yaml @@ -17,7 +17,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.0.53 +version: 0.0.54 # 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 # follow Semantic Versioning. They should reflect the version the application is using. diff --git a/charts/seqr/templates/check-for-new-samples-from-pipeline.yaml b/charts/seqr/templates/check-for-new-samples-from-pipeline.yaml index c58348e7..f37a4773 100644 --- a/charts/seqr/templates/check-for-new-samples-from-pipeline.yaml +++ b/charts/seqr/templates/check-for-new-samples-from-pipeline.yaml @@ -3,7 +3,7 @@ apiVersion: batch/v1 kind: Job metadata: - name: {{ include "seqr.fullname" $ }}-check-new-samples-job-{{ $path | replace "/" "-" | replace "_" "-"}} + name: {{ include "seqr.fullname" $ }}-check-new-samples-job-{{ $path | replace "/" "-" | replace "_" "-" | lower}} labels: {{- include "seqr.labels" $ | nindent 4 }} annotations: @@ -29,7 +29,7 @@ spec: {{- toYaml . | nindent 6 }} {{- end }} containers: - - name: {{ include "seqr.fullname" $ }}-check-new-samples-job-pod-{{ $path | replace "/" "-" | replace "_" "-"}} + - name: {{ include "seqr.fullname" $ }}-check-new-samples-job-pod-{{ $path | replace "/" "-" | replace "_" "-" | lower}} image: {{ $.Values.image.repository }}:{{ $.Values.image.tag | default $.Chart.AppVersion }} imagePullPolicy: {{ $.Values.image.pullPolicy }} {{- with $.Values.volumeMounts }}