added /runner as emptydir
Some checks failed
build / build (push) Successful in 43s
Go Tests / go-tests (push) Failing after 1m17s

This commit is contained in:
Manuel Ganter 2025-10-27 15:18:25 +01:00
parent db92c0d3d5
commit 4e241a2b1f
No known key found for this signature in database

View file

@ -167,6 +167,10 @@ func GetPodSpec(gitHubScope GitHubScopeDetails, bootstrapParams params.Bootstrap
MountPath: "/run/user/1000/buildkit",
SubPath: "buildkitd.sock",
},
{
Name: "runner",
MountPath: "/runner",
},
},
},
{
@ -208,6 +212,12 @@ func GetPodSpec(gitHubScope GitHubScopeDetails, bootstrapParams params.Bootstrap
EmptyDir: &corev1.EmptyDirVolumeSource{},
},
},
{
Name: "runner",
VolumeSource: corev1.VolumeSource{
EmptyDir: &corev1.EmptyDirVolumeSource{},
},
},
},
}
}