feat: allow for modifying var-run mount maximum size limit (#2624)

This commit is contained in:
Daniel Hobley
2023-05-27 04:47:23 +02:00
committed by GitHub
parent 32a653c0ca
commit 90ea691e72
12 changed files with 86 additions and 2 deletions

View File

@@ -436,6 +436,11 @@ func (in *RunnerConfig) DeepCopyInto(out *RunnerConfig) {
*out = new(string)
**out = **in
}
if in.DockerVarRunVolumeSizeLimit != nil {
in, out := &in.DockerVarRunVolumeSizeLimit, &out.DockerVarRunVolumeSizeLimit
x := (*in).DeepCopy()
*out = &x
}
if in.VolumeSizeLimit != nil {
in, out := &in.VolumeSizeLimit, &out.VolumeSizeLimit
x := (*in).DeepCopy()