Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 873 for NodeName (0.14 sec)

  1. staging/src/k8s.io/api/discovery/v1beta1/zz_generated.deepcopy.go

    	}
    	if in.Topology != nil {
    		in, out := &in.Topology, &out.Topology
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.NodeName != nil {
    		in, out := &in.NodeName, &out.NodeName
    		*out = new(string)
    		**out = **in
    	}
    	if in.Hints != nil {
    		in, out := &in.Hints, &out.Hints
    		*out = new(EndpointHints)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  2. pkg/apis/core/pods/helpers.go

    		"metadata.namespace",
    		"metadata.uid",
    		"spec.nodeName",
    		"spec.restartPolicy",
    		"spec.serviceAccountName",
    		"spec.schedulerName",
    		"status.phase",
    		"status.hostIP",
    		"status.hostIPs",
    		"status.podIP",
    		"status.podIPs":
    		return label, value, nil
    	// This is for backwards compatibility with old v1 clients which send spec.host
    	case "spec.host":
    		return "spec.nodeName", value, nil
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:35:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    func (o podByCreationTimestampAndPhase) Less(i, j int) bool {
    	// Scheduled Pod first
    	if len(o[i].Spec.NodeName) != 0 && len(o[j].Spec.NodeName) == 0 {
    		return true
    	}
    
    	if len(o[i].Spec.NodeName) == 0 && len(o[j].Spec.NodeName) != 0 {
    		return false
    	}
    
    	if o[i].CreationTimestamp.Equal(&o[j].CreationTimestamp) {
    		return o[i].Name < o[j].Name
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator.go

    			if areAttachedErr != nil {
    				klog.Errorf(
    					"VolumesAreAttached failed for checking on node %q with: %v",
    					nodeName,
    					areAttachedErr)
    				continue
    			}
    
    			for spec, check := range attached {
    				if !check {
    					actualStateOfWorld.MarkVolumeAsDetached(volumeSpecMap[spec], nodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  5. pkg/apis/resource/validation/validation.go

    }
    
    func validateStructuredResourceHandle(handle *resource.StructuredResourceHandle, fldPath *field.Path) field.ErrorList {
    	var allErrs field.ErrorList
    	if handle.NodeName != "" {
    		allErrs = append(allErrs, validateNodeName(handle.NodeName, fldPath.Child("nodeName"))...)
    	}
    	allErrs = append(allErrs, validateDriverAllocationResults(handle.Results, fldPath.Child("results"))...)
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  6. pkg/scheduler/metrics/resources/resources_test.go

    					Spec: v1.PodSpec{
    						NodeName: "node-one",
    						Containers: []v1.Container{
    							{Resources: v1.ResourceRequirements{Requests: v1.ResourceList{"cpu": resource.MustParse("1")}}},
    						},
    					},
    					Status: v1.PodStatus{Phase: v1.PodUnknown},
    				},
    				{
    					ObjectMeta: metav1.ObjectMeta{Namespace: "test", Name: "foo-pending"},
    					Spec: v1.PodSpec{
    						NodeName: "node-one",
    						InitContainers: []v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/discovery.k8s.io.v1beta1.EndpointSlice.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/kubelet/config_test.go

    	configutil "k8s.io/kubernetes/cmd/kubeadm/app/util/config"
    )
    
    func TestCreateConfigMap(t *testing.T) {
    	nodeName := "fake-node"
    	client := fake.NewSimpleClientset()
    	client.PrependReactor("get", "nodes", func(action core.Action) (bool, runtime.Object, error) {
    		return true, &v1.Node{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: nodeName,
    			},
    			Spec: v1.NodeSpec{},
    		}, nil
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/node_expander.go

    	allowExpansion := ne.runPreCheck()
    	if !allowExpansion {
    		return false, nil, testResponseData{false, true}
    	}
    
    	var err error
    	nodeName := ne.vmt.Pod.Spec.NodeName
    
    	if !ne.pvcAlreadyUpdated {
    		ne.pvc, err = util.MarkNodeExpansionInProgress(ne.pvc, ne.kubeClient)
    
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/discovery.k8s.io.v1.EndpointSlice.yaml

        ready: true
        serving: true
        terminating: true
      deprecatedTopology:
        deprecatedTopologyKey: deprecatedTopologyValue
      hints:
        forZones:
        - name: nameValue
      hostname: hostnameValue
      nodeName: nodeNameValue
      targetRef:
        apiVersion: apiVersionValue
        fieldPath: fieldPathValue
        kind: kindValue
        name: nameValue
        namespace: namespaceValue
        resourceVersion: resourceVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top