Skip to content

Commit

Permalink
post release bugfixes (#30)
Browse files Browse the repository at this point in the history
* post release bugfixes

* ws

* Version bumps
  • Loading branch information
bpblanken authored Nov 27, 2023
1 parent d1d601f commit 85b330d
Show file tree
Hide file tree
Showing 5 changed files with 6 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.13
version: 0.1.14

# 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
1 change: 1 addition & 0 deletions charts/hail-search/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ spec:
metadata:
annotations:
checksum/datasetVersions: {{ print $.Values.datasetVersions | sha256sum }}
checksum/config: {{ include (print $.Template.BasePath "/environment.yaml") . | sha256sum }}
{{- with .Values.podAnnotations }}
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/seqr/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,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.69
version: 0.0.70
# 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 @@ -9,7 +9,7 @@ metadata:
annotations:
"helm.sh/hook": post-install, post-upgrade
"helm.sh/hook-weight": "-1"
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
"helm.sh/hook-delete-policy": before-hook-creation
spec:
template:
metadata:
Expand Down
2 changes: 2 additions & 0 deletions unit_test/hail_search/test_hail_search_chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ def test_values(self):
p.check_returncode()
self.assertIn('serviceAccountName: test-hail-search', p.stdout)
self.assertIn('name: sync-datasets-grch38-snv-indel', p.stdout)
self.assertIn('checksum/datasetVersions', p.stdout)
self.assertIn('checksum/config', p.stdout)


if __name__ == '__main__':
Expand Down

0 comments on commit 85b330d

Please sign in to comment.