in internal/controllers/synthesis/lifecycle.go [82:137]
func (c *podLifecycleController) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
logger := logr.FromContextOrDiscard(ctx)
comp := &apiv1.Composition{}
err := c.client.Get(ctx, req.NamespacedName, comp)
if err != nil {
logger.Error(err, "failed to get composition resource")
return ctrl.Result{}, client.IgnoreNotFound(err)
}
if comp.DeletionTimestamp != nil ||
!controllerutil.ContainsFinalizer(comp, "eno.azure.io/cleanup") ||
comp.Status.InFlightSynthesis == nil ||
comp.Status.InFlightSynthesis.Canceled != nil {
return ctrl.Result{}, nil
}
logger = logger.WithValues("compositionName", comp.Name, "compositionNamespace", comp.Namespace, "compositionGeneration", comp.Generation, "synthesisUUID", comp.Status.InFlightSynthesis.UUID)
syn := &apiv1.Synthesizer{}
syn.Name = comp.Spec.Synthesizer.Name
err = c.client.Get(ctx, client.ObjectKeyFromObject(syn), syn)
if err != nil {
logger.Error(err, "failed to get synthesizer")
return ctrl.Result{}, client.IgnoreNotFound(err)
}
if syn != nil {
logger = logger.WithValues("synthesizerName", syn.Name, "synthesizerGeneration", syn.Generation)
}
// Confirm that a pod doesn't already exist for this synthesis without trusting informers.
// This protects against cases where synthesis has recently started and something causes
// another tick of this loop before the pod write hits the informer.
pods := &corev1.PodList{}
err = c.noCacheReader.List(ctx, pods, client.InNamespace(c.config.PodNamespace), client.MatchingLabels{
synthesisIDLabelKey: comp.Status.InFlightSynthesis.UUID,
})
if err != nil {
return ctrl.Result{}, fmt.Errorf("checking for existing pod: %w", err)
}
for _, pod := range pods.Items {
if pod.DeletionTimestamp == nil {
logger.V(1).Info(fmt.Sprintf("refusing to create new synthesizer pod because the pod %q already exists and has not been deleted", pod.Name))
return ctrl.Result{}, nil
}
}
// If we made it this far it's safe to create a pod
pod := newPod(c.config, comp, syn)
err = c.client.Create(ctx, pod)
if err != nil {
return ctrl.Result{}, fmt.Errorf("creating pod: %w", err)
}
logger.V(0).Info("created synthesizer pod", "podName", pod.Name)
sytheses.Inc()
return ctrl.Result{}, nil
}