Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for runningPod (0.11 sec)

  1. pkg/kubelet/server/server.go

    	s.restfulCont.Add(ws)
    
    	s.addMetricsBucketMatcher("configz")
    	configz.InstallHandler(s.restfulCont)
    
    	// The /runningpods endpoint is used for testing only.
    	s.addMetricsBucketMatcher("runningpods")
    	ws = new(restful.WebService)
    	ws.
    		Path("/runningpods/").
    		Produces(restful.MIME_JSON)
    	ws.Route(ws.GET("").
    		To(s.getRunningPods).
    		Operation("getRunningPods"))
    	s.restfulCont.Add(ws)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server_test.go

    		"run with uid":                    {url: "/run/podNamespace/podID/uid/containerName", bucket: "run"},
    		"runningpods":                     {url: "/runningpods/", bucket: "runningpods"},
    		"stats":                           {url: "/stats/", bucket: "stats"},
    		"stats summary sub":               {url: "/stats/summary", bucket: "stats"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. pkg/kubelet/userns/userns_manager.go

    	if !utilfeature.DefaultFeatureGate.Enabled(features.UserNamespacesSupport) {
    		return nil
    	}
    
    	m.lock.Lock()
    	defer m.lock.Unlock()
    
    	allPods := sets.New[string]()
    	for _, pod := range pods {
    		allPods.Insert(string(pod.UID))
    	}
    	for _, pod := range runningPods {
    		allPods.Insert(string(pod.ID))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top