From 3847dd7ff7fffef87bce2722df788c9bb916674d Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 7 Sep 2025 12:15:12 -0500 Subject: [PATCH] ci: Update workspace volume PVC name Now that we have _democratic-csi_ for storage management, the old manual iSCSI volumes are being replaced with dynamically provisioned volumes. As part of the migration process, I decided to consolidate all of the Buildroot Jenkins jobs' workspaces into a single huge PVC. This way, I don't have to define a PVC for every one individually. --- ci/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 429b9d4..a7aa1a4 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -12,7 +12,7 @@ pipeline { kubernetes { yamlFile 'ci/podTemplate.yaml' workspaceVolume persistentVolumeClaimWorkspaceVolume( - claimName: 'buildroot-airplaypi' + claimName: 'buildroot' ) defaultContainer 'build' }