From 41b168eec5133469c71d3f92c929245356fd6adb Mon Sep 17 00:00:00 2001 From: Alex ubuntu vm <alexdecb@yahoo.es> Date: Fri, 14 Jun 2024 18:05:09 +0200 Subject: [PATCH] pod webhook: removed useless loggers --- src/kubernetes-api/internal/controller/pod_webhook.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/kubernetes-api/internal/controller/pod_webhook.go b/src/kubernetes-api/internal/controller/pod_webhook.go index e166a08..0a7f3fc 100644 --- a/src/kubernetes-api/internal/controller/pod_webhook.go +++ b/src/kubernetes-api/internal/controller/pod_webhook.go @@ -87,8 +87,6 @@ func (a *PodAnnotator) Handle(ctx context.Context, req admission.Request) admiss return admission.Allowed("No interfaces available for node") } - fmt.Println("esto funcsiona") - log.Info(fmt.Sprintf("Networks: %v", networks)) // Now we create the multus annotations, by using the network attachment definition name // And the desired IP address. for index, network := range networks { @@ -96,7 +94,6 @@ func (a *PodAnnotator) Handle(ctx context.Context, req admission.Request) admiss netAttachDef := &netAttachDefs.Items[index] newAnnotation := NetworkAnnotation{Name: netAttachDef.Name, IPAdresses: network.IPAdresses, Namespace: a.SwitchesNamespace} netAttachDef.Labels[netAttachDefLabel] = "true" - log.Info(fmt.Sprintf("updating network attachment definition %v", netAttachDef)) err = a.Client.Update(ctx, netAttachDef) if err != nil { @@ -105,7 +102,6 @@ func (a *PodAnnotator) Handle(ctx context.Context, req admission.Request) admiss } multusAnnotations = append(multusAnnotations, newAnnotation) } - log.Info(fmt.Sprintf("%v", multusAnnotations)) pod.Annotations[MULTUS_ANNOTATION_KEY] = multusAnnotationToString(multusAnnotations) // pod.Annotations["k8s.v1.cni.cncf.io/networks"] = `[{"name": "veth10","ips": ["10.0.0.1/24"]}]` -- GitLab