tas-runtime-bot
released this
01 Oct 12:44
·
80 commits
to develop
since this release
2.105.0
Release Date: October 01, 2024
Changes
- Upgrade to Go 1.23!
- add healtcheck metrics property
- add healthcheck property to rep_windows config template
- add missing default params for linters
- add metadata to docs and reorder them
- Various dependency bumps
Bosh Job Spec changes:
diff --git a/jobs/rep/spec b/jobs/rep/spec
index 405f90f46..0737d9d1a 100644
--- a/jobs/rep/spec
+++ b/jobs/rep/spec
@@ -235,7 +235,9 @@ properties:
enable_declarative_healthcheck:
description: "When set, enables the rep to prefer the LRP CheckDefinition to healthcheck instances over the Monitor action. Requires Garden-Runc v1.10.0+"
default: false
-
+ enable_healthcheck_metrics:
+ description: "When set, enables the rep to emit healtcheck failure metrics. Requires enable_declarative_healthcheck to be set to true."
+ default: false
cell_registrations.locket.enabled:
description: Enable the cell rep to register itself as a service with Locket.
default: true
diff --git a/jobs/rep_windows/spec b/jobs/rep_windows/spec
index 0521d1061..4a7dfefc6 100644
--- a/jobs/rep_windows/spec
+++ b/jobs/rep_windows/spec
@@ -237,13 +237,16 @@ properties:
diego.rep.locket.client_keepalive_timeout:
description: "Timeout in seconds to receive a response to the keepalive ping. If a response is not received within this time, the locket client will reconnect to another server."
default: 22
-
+
enable_declarative_healthcheck:
description: "When set, enables the rep to prefer the LRP CheckDefinition to healthcheck instances over the Monitor action."
default: false
declarative_healthcheck_path:
description: "The directory containing the declarative healthcheck binary"
default: "/var/vcap/packages/healthcheck_windows/external"
+ enable_healthcheck_metrics:
+ description: "When set, enables the rep to emit healtcheck failure metrics. Requires enable_declarative_healthcheck to be set to true."
+ default: false
cell_registrations.locket.enabled:
description: Enable the cell rep to register itself as a service with Locket.
diff --git a/jobs/vizzini/spec b/jobs/vizzini/spec
index d61278357..901e5236d 100644
--- a/jobs/vizzini/spec
+++ b/jobs/vizzini/spec
@@ -1,7 +1,7 @@
---
name: vizzini
packages:
- - golang-1.22-linux
+ - golang-1.23-linux
- vizzini
templates:
✨ Built with go 1.23.1
Full Changelog: v2.104.0...v2.105.0