Skip to content

2.115.0

Latest
Compare
Choose a tag to compare
@tas-runtime-bot tas-runtime-bot released this 24 Feb 06:30
· 2 commits to develop since this release

2.115.0

Release Date: February 24, 2025

Changes

  • Expose configuration option to select rootfs used for container's sidecar processes. This configuration resolves the following issue 983 observed on systems running with multiple FS stacks.

Thanks to @Ivo1116 , @PlamenDoychev!

Bosh Job Spec changes:

diff --git a/jobs/rep/spec b/jobs/rep/spec
index 012234e12..ecff35fa5 100644
--- a/jobs/rep/spec
+++ b/jobs/rep/spec
@@ -54,6 +54,9 @@ properties:
     default: false
   diego.rep.preloaded_rootfses:
     description: "Array of name:absolute_path pairs representing root filesystems preloaded onto the underlying garden"
+  diego.rep.sidecar_rootfs_path:
+    description: "absolute_path representing the root filesystem used for sidecar processes (ie. '/var/vcap/packages/cflinuxfs4/rootfs.tar'). Must be one of the preloaded_rootfses paths. Leaving the default empty string is ok, as it will then select the first of he preloaded_rootfses"
+    default: ""
   diego.rep.rootfs_providers:
     description: "Array of schemes for which the underlying garden can support arbitrary root filesystems"
     default:
diff --git a/jobs/rep_windows/spec b/jobs/rep_windows/spec
index 4a7dfefc6..d34483c0b 100644
--- a/jobs/rep_windows/spec
+++ b/jobs/rep_windows/spec
@@ -45,6 +45,9 @@ properties:
     description: "Array of name:absolute_path pairs representing root filesystems preloaded onto the underlying garden"
     default:
       - windows2012R2:/tmp/windows2012R2
+  diego.rep.sidecar_rootfs_path:
+    description: "absolute_path representing the root filesystem used for sidecar processes (ie. '/tmp/windows2012R2'). Must be one of the preloaded_rootfses paths. Leaving the default empty string is ok, as it will then select the first of he preloaded_rootfses"
+    default: ""
   diego.rep.rootfs_providers:
     description: "Array of schemes for which the underlying garden can support arbitrary root filesystems"
     default: []

✨ Built with go 1.23.6

Full Changelog: v2.114.0...v2.115.0

Resources