Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 106 of 106 for HandleCrash (0.29 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    			cfgCtlr.configQueue.Add(0)
    
    		}})
    	return cfgCtlr
    }
    
    func (cfgCtlr *configController) Run(stopCh <-chan struct{}) error {
    	defer utilruntime.HandleCrash()
    
    	// Let the config worker stop when we are done
    	defer cfgCtlr.configQueue.ShutDown()
    
    	klog.Info("Starting API Priority and Fairness config controller")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	return nc, nil
    }
    
    // Run starts an asynchronous loop that monitors the status of cluster nodes.
    func (nc *Controller) Run(ctx context.Context) {
    	defer utilruntime.HandleCrash()
    
    	// Start events processing pipeline.
    	nc.broadcaster.StartStructuredLogging(3)
    	logger := klog.FromContext(ctx)
    	logger.Info("Sending events to api server")
    	nc.broadcaster.StartRecordingToSink(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal.go

    	monitor.Register()
    
    	return hpaController
    }
    
    // Run begins watching and syncing.
    func (a *HorizontalController) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	defer a.queue.ShutDown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting HPA controller")
    	defer logger.Info("Shutting down HPA controller")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    	metrics.Register()
    
    	return jm, nil
    }
    
    // Run the main goroutine responsible for watching and syncing jobs.
    func (jm *Controller) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	logger := klog.FromContext(ctx)
    
    	// Start events processing pipeline.
    	jm.broadcaster.StartStructuredLogging(3)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers.go

    		} else {
    			outCh = podUpdates
    		}
    
    		// spawn a pod worker
    		go func() {
    			// TODO: this should be a wait.Until with backoff to handle panics, and
    			// accept a context for shutdown
    			defer runtime.HandleCrash()
    			defer klog.V(3).InfoS("Pod worker has stopped", "podUID", uid)
    			p.podWorkerLoop(uid, outCh)
    		}()
    	}
    
    	// measure the maximum latency between a call to UpdatePod and when the pod worker reacts to it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.20.md

    - StatefulSet Controller now waits for PersistentVolumeClaim deletion before creating pods. ([#93457](https://github.com/kubernetes/kubernetes/pull/93457), [@ymmt2005](https://github.com/ymmt2005))
    - StreamWatcher now calls HandleCrash at appropriate sequence. ([#93108](https://github.com/kubernetes/kubernetes/pull/93108), [@lixiaobing1](https://github.com/lixiaobing1))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
Back to top