Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for startLine (0.5 sec)

  1. pkg/kubelet/kubelet.go

    		if err != nil {
    			return nil, fmt.Errorf("while starting informer-based ClusterTrustBundle manager: %w", err)
    		}
    		kubeInformers.Start(wait.NeverStop)
    		klog.InfoS("Started ClusterTrustBundle informer")
    	} else {
    		// In static kubelet mode, use a no-op manager.
    		clusterTrustBundleManager = &clustertrustbundle.NoopManager{}
    		klog.InfoS("Not starting ClusterTrustBundle informer because we are in static kubelet mode")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    	notYetActiveDeadlineSeconds := int64(120)
    	startTime := metav1.NewTime(clock.Now())
    	pods[0].Status.StartTime = &startTime
    	pods[0].Spec.ActiveDeadlineSeconds = &exceededActiveDeadlineSeconds
    	pods[1].Status.StartTime = &startTime
    	pods[1].Spec.ActiveDeadlineSeconds = &notYetActiveDeadlineSeconds
    	pods[2].Status.StartTime = &startTime
    	pods[2].Spec.ActiveDeadlineSeconds = &exceededActiveDeadlineSeconds
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crdclient/client.go

    func (cl *Client) Run(stop <-chan struct{}) {
    	if cl.started.Swap(true) {
    		// was already started by other thread
    		return
    	}
    
    	t0 := time.Now()
    	cl.logger.Infof("Starting Pilot K8S CRD controller")
    
    	if !kube.WaitForCacheSync("crdclient", stop, cl.informerSynced) {
    		cl.logger.Errorf("Failed to sync Pilot K8S CRD controller cache")
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    	// because some service changed.)
    	//
    	// Note that there is a race between Kubelet seeing the pod and kubelet seeing the service.
    	// To avoid this users can: (1) wait between starting a service and starting; or (2) detect
    	// missing service env var and exit and be restarted; or (3) use DNS instead of env vars
    	// and keep trying to resolve the DNS name of the service (recommended).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top