fixup! fixup! fixup! Ensure that jobs run with the controller service account if no service account is specified.

This commit is contained in:
2024-12-20 10:43:16 +00:00
parent 75ab889fa2
commit 0b12097f6f
6 changed files with 23 additions and 14 deletions
@@ -148,6 +148,11 @@ func (in *ClusterImageExportSpec) DeepCopyInto(out *ClusterImageExportSpec) {
*out = make([]corev1.LocalObjectReference, len(*in))
copy(*out, *in)
}
if in.AdditionalImages != nil {
in, out := &in.AdditionalImages, &out.AdditionalImages
*out = make([]string, len(*in))
copy(*out, *in)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterImageExportSpec.