This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-1-test by this push:
     new 1f27092a4fc [v3-1-test] Investigate disk space and layout of runner 
(#60018) (#60039)
1f27092a4fc is described below

commit 1f27092a4fc25af90e85f5ade2ad019633420269
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Jan 6 15:27:02 2026 +0100

    [v3-1-test] Investigate disk space and layout of runner (#60018) (#60039)
    
    * Investigate disk space and layout of runner
    
    * Add validation that /mnt exists
    
    * Add validation that /mnt exists
    
    * Add validation that /mnt exists
    
    * Add validation that /mnt exists, revert negative test
    (cherry picked from commit 35ba1b0db3daa6138051a08071577092f4b18fd7)
    
    Co-authored-by: Jens Scheffler <[email protected]>
---
 scripts/ci/make_mnt_writeable.sh | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/scripts/ci/make_mnt_writeable.sh b/scripts/ci/make_mnt_writeable.sh
index ddabf84b6b7..717a9db06ae 100755
--- a/scripts/ci/make_mnt_writeable.sh
+++ b/scripts/ci/make_mnt_writeable.sh
@@ -20,6 +20,11 @@ function make_mnt_writeable {
     echo "Investigating node disks"
     lsblk
     sudo blkid
+    echo "Check that we have expected /mnt to be a separate mount"
+    if ! lsblk | grep -q /mnt; then
+        echo "/mnt is missing as a separate mount, runner misconfigured!"
+        exit 42
+    fi
     echo "Checking free space!"
     df -H
     echo "Cleaning /mnt just in case it is not empty"

Reply via email to