ci: Increase workspace volume size
All checks were successful
dustin/metricspi/pipeline/head This commit looks good

The default volume size created by the `dynamicPVC` function is not
sufficient to build the *metricspi* project.
This commit is contained in:
2022-12-21 11:05:19 -06:00
parent e16987d66e
commit 61154fc740

4
ci/Jenkinsfile vendored
View File

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