Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for newContainers (0.29 sec)

  1. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    				fakePodManager.AddPod(existingPod)
    				dswp.findAndAddNewPods()
    			}
    
    			newContainer := container
    			newContainer.SecurityContext.SELinuxOptions = tc.newContainerSELinuxOpts
    			newPod := createPodWithVolume("dswp-test-pod", "dswp-test-volume-name", "file-bound", []v1.Container{newContainer})
    
    			// Act - add the new Pod
    			fakePodManager.AddPod(newPod)
    			dswp.findAndAddNewPods()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	return handleInternal(storage, admissionControl, nil)
    }
    
    func handleInternal(storage map[string]rest.Storage, admissionControl admission.Interface, auditSink audit.Sink) http.Handler {
    	container := restful.NewContainer()
    	container.Router(restful.CurlyRouter{})
    	mux := container.ServeMux
    
    	template := APIGroupVersion{
    		Storage: storage,
    
    		Creater:         scheme,
    		Convertor:       scheme,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server.go

    	server := Server{
    		host:                 host,
    		resourceAnalyzer:     resourceAnalyzer,
    		auth:                 auth,
    		restfulCont:          &filteringContainer{Container: restful.NewContainer()},
    		metricsBuckets:       sets.New[string](),
    		metricsMethodBuckets: sets.New[string]("OPTIONS", "GET", "HEAD", "POST", "PUT", "DELETE", "TRACE", "CONNECT"),
    	}
    	if auth != nil {
    		server.InstallAuthFilter()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
Back to top