Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 795 for podIps (0.49 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    }
    
    // NominatedPodsForNode returns a copy of pods that are nominated to run on the given node,
    // but they are waiting for other pods to be removed from the node.
    func (npm *nominator) NominatedPodsForNode(nodeName string) []*framework.PodInfo {
    	npm.lock.RLock()
    	defer npm.lock.RUnlock()
    	// Make a copy of the nominated Pods so the caller can mutate safely.
    	pods := make([]*framework.PodInfo, len(npm.nominatedPods[nodeName]))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    		// Find filesystem volume information
    		// ex. filesystem volume: /pods/{podUid}/volumes/{escapeQualifiedPluginName}/{volumeName}
    		volumesDirs := map[v1.PersistentVolumeMode]string{
    			v1.PersistentVolumeFilesystem: filepath.Join(podDir, config.DefaultKubeletVolumesDirName),
    		}
    		// Find block volume information
    		// ex. block volume: /pods/{podUid}/volumeDevices/{escapeQualifiedPluginName}/{volumeName}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. plugin/pkg/admission/podtolerationrestriction/admission_test.go

    	}
    
    	// if the update of initialized pod is not ignored, an error will be returned because the pod's Tolerations conflicts with namespace's Tolerations.
    	err = admissiontesting.WithReinvocationTesting(t, handler).Admit(context.TODO(), admission.NewAttributesRecord(pod, pod, api.Kind("Pod").WithVersion("version"), "testNamespace", pod.ObjectMeta.Name, api.Resource("pods").WithVersion("version"), "", admission.Update, &metav1.CreateOptions{}, false, nil), nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1/types.go

    	// inlineVolumeSpec contains all the information necessary to attach
    	// a persistent volume defined by a pod's inline VolumeSource. This field
    	// is populated only for the CSIMigration feature. It contains
    	// translated fields from a pod's inline VolumeSource to a
    	// PersistentVolumeSpec. This field is beta-level and is only
    	// honored by servers that enabled the CSIMigration feature.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    						},
    					},
    				}},
    			},
    			expectedWindowsConfig: nil,
    			expectedError:         fmt.Errorf("pod must not contain any HostProcess containers if Pod's WindowsOptions.HostProcess is set to false"),
    		},
    		{
    			name: "Pod's security context doesn't specify HostProcess containers but Container's security context does",
    			podSpec: &v1.PodSpec{
    				HostNetwork: true,
    				Containers: []v1.Container{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    	podQos := kubeapiqos.GetPodQOS(pod)
    	containerDoesNotRequestMemory := container.Resources.Requests.Memory().IsZero() && container.Resources.Limits.Memory().IsZero()
    	memoryRequestEqualsToLimit := container.Resources.Requests.Memory().Cmp(*container.Resources.Limits.Memory()) == 0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/options.go

    package nodeagent
    
    import (
    	"net/netip"
    
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/env"
    )
    
    var (
    	PodNamespace      = env.RegisterStringVar("POD_NAMESPACE", "", "pod's namespace").Get()
    	SystemNamespace   = env.RegisterStringVar("SYSTEM_NAMESPACE", constants.IstioSystemNamespace, "istio system namespace").Get()
    	PodName           = env.RegisterStringVar("POD_NAME", "", "").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/types.go

    	PercentageOfNodesToScore *int32
    
    	// PodInitialBackoffSeconds is the initial backoff for unschedulable pods.
    	// If specified, it must be greater than 0. If this value is null, the default value (1s)
    	// will be used.
    	PodInitialBackoffSeconds int64
    
    	// PodMaxBackoffSeconds is the max backoff for unschedulable pods.
    	// If specified, it must be greater than or equal to podInitialBackoffSeconds. If this value is null,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. pkg/controller/deployment/deployment_controller.go

    	// Get all Pods that potentially belong to this Deployment.
    	selector, err := metav1.LabelSelectorAsSelector(d.Spec.Selector)
    	if err != nil {
    		return nil, err
    	}
    	pods, err := dc.podLister.Pods(d.Namespace).List(selector)
    	if err != nil {
    		return nil, err
    	}
    	// Group Pods by their controller (if it's in rsList).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_control_test.go

    	}
    
    	// now mutate a pod's identity
    	pods, err := om.podsLister.List(labels.Everything())
    	if err != nil {
    		t.Fatalf("Error listing pods: %v", err)
    	}
    	if len(pods) != 3 {
    		t.Fatalf("Expected 3 pods, got %d", len(pods))
    	}
    	sort.Sort(ascendingOrdinal(pods))
    	pods[0].Name = "goo-0"
    	om.podsIndexer.Update(pods[0])
    
    	// now it should fail
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
Back to top