ci: Increase workspace volume size
dustin/metricspi/pipeline/head This commit looks good Details

The default volume size created by the `dynamicPVC` function is not
sufficient to build the *metricspi* project.
master
Dustin 2022-12-21 11:05:19 -06:00
parent e16987d66e
commit 61154fc740
1 changed files with 3 additions and 1 deletions

4
ci/Jenkinsfile vendored
View File

@ -5,7 +5,9 @@ pipeline {
kubernetes {
yamlFile 'ci/podTemplate.yaml'
defaultContainer 'buildroot'
workspaceVolume dynamicPVC()
workspaceVolume dynamicPVC(
requestsSize: '20Gi',
)
}
}