Skip to content

Commit

Permalink
post release bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bpblanken committed Nov 27, 2023
1 parent d1d601f commit 358ddd2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
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
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 358ddd2

Please sign in to comment.