Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for runOnce (0.28 sec)

  1. cmd/kubelet/app/server.go

    		klog.ErrorS(err, "Failed to set rlimit on max file handles")
    	}
    
    	// process pods and exit.
    	if runOnce {
    		if _, err := k.RunOnce(podCfg.Updates()); err != nil {
    			return fmt.Errorf("runonce failed: %w", err)
    		}
    		klog.InfoS("Started kubelet as runonce")
    	} else {
    		startKubelet(k, podCfg, &kubeServer.KubeletConfiguration, kubeDeps, kubeServer.EnableServer)
    		klog.InfoS("Started kubelet")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/helpers_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    			// in this case, the container should not to into waiting state immediately because that can make cases like runonce pods actually run
    			// twice. "container never ran" is different than "container ran and failed".  This is handled differently in the kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	ListenAndServeReadOnly(address net.IP, port uint, tp trace.TracerProvider)
    	ListenAndServePodResources()
    	Run(<-chan kubetypes.PodUpdate)
    	RunOnce(<-chan kubetypes.PodUpdate) ([]RunPodResult, error)
    }
    
    // Dependencies is a bin for things we might consider "injected dependencies" -- objects constructed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"runOnce": {
    						SchemaProps: spec.SchemaProps{
    							Description: "runOnce causes the Kubelet to check the API server once for pods, run those in addition to the pods specified by static pod files, and exit. Default: false",
    							Type:        []string{"boolean"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top