We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14cad0d commit 248911cCopy full SHA for 248911c
tools/verify-release/verify-release.sh
@@ -470,6 +470,9 @@ log_part_end
470
471
log_part_start "Comparing helm chart artifacts"
472
mkdir -p "${helm_work_dir}/local" "${helm_work_dir}/staged"
473
+# Prerequisite for reproducible helm packages: file modification time must be deterministic
474
+# Works with helm since version 4.0.0
475
+exec_process find "${worktree_dir}/helm/polaris" -exec touch -d "1980-01-01 00:00:00" {} +
476
proc_exec "Helm packaging failed" helm package --destination "${helm_work_dir}" "${worktree_dir}/helm/polaris"
477
helm_package_file="polaris-${version_full}.tgz"
478
tar --warning=no-timestamp -xf "${helm_dir}/${helm_package_file}" --directory "${helm_work_dir}/staged" || true
0 commit comments