diff --git a/internal/spec/spec.go b/internal/spec/spec.go index 2dc4f18..163355a 100644 --- a/internal/spec/spec.go +++ b/internal/spec/spec.go @@ -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{}, + }, + }, }, } }