Skip to content

Commit

Permalink
lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
bpblanken committed Oct 5, 2023
1 parent fe56dd4 commit 598a596
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/hail-search/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion charts/hail-search/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion charts/seqr/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}
Expand Down

0 comments on commit 598a596

Please sign in to comment.