Public release release-5e0e2bce9be3

Source commit: 5e0e2bce9be3df55b3b7bd4f9a287c58ca2f4385

Public tree identity: sha256:becd5e35a543edf57b183dc847b967ec0d5ad4dd4398b26d4eb836a75dd53c7e
This commit is contained in:
Clusterflux release 2026-07-20 14:15:38 +02:00
parent 5cbede8bdc
commit 58195aae30
3 changed files with 8 additions and 8 deletions

View file

@ -2461,7 +2461,7 @@ function deploymentProvenance() {
hosted_service_sha256: `sha256:${binarySha256}`,
service_unit: fragment,
service_unit_sha256: `sha256:${serviceUnitSha256}`,
service_configuration_sha256: `sha256:${renderedServiceConfigurationSha256}`,
service_configuration_sha256: renderedServiceConfigurationSha256,
};
}
@ -2475,7 +2475,7 @@ function configurationProvenance() {
return {
repository: configRepo,
revision,
evidence_identity: `sha256:${sha256(Buffer.from(revision))}`,
evidence_identity: sha256(Buffer.from(revision)),
clean: status === "",
status: status || null,
};
@ -2505,9 +2505,7 @@ function proxyConfigurationProvenance() {
"ssh",
sshArgs(nginxExecutable, "-T", "-c", nginxConfiguration)
);
const renderedConfigurationIdentity = `sha256:${sha256(
Buffer.from(renderedConfiguration)
)}`;
const renderedConfigurationIdentity = sha256(Buffer.from(renderedConfiguration));
const activeState = run(
"ssh",
sshArgs("systemctl", "is-active", proxyUnit)