Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 186 for NodeName (0.15 sec)

  1. pkg/scheduler/apis/config/testing/defaults/defaults.go

    var PluginsV1 = &config.Plugins{
    	MultiPoint: config.PluginSet{
    		Enabled: []config.Plugin{
    			{Name: names.SchedulingGates},
    			{Name: names.PrioritySort},
    			{Name: names.NodeUnschedulable},
    			{Name: names.NodeName},
    			{Name: names.TaintToleration, Weight: 3},
    			{Name: names.NodeAffinity, Weight: 2},
    			{Name: names.NodePorts},
    			{Name: names.NodeResourcesFit, Weight: 1},
    			{Name: names.VolumeRestrictions},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/discovery.k8s.io.v1beta1.EndpointSlice.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/discovery.k8s.io.v1beta1.EndpointSlice.yaml

    endpoints:
    - addresses:
      - addressesValue
      conditions:
        ready: true
        serving: true
        terminating: true
      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: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. pkg/kubemark/hollow_kubelet.go

    		klog.Fatalf("Failed to run HollowKubelet: %v. Exiting.", err)
    	}
    	select {}
    }
    
    // HollowKubeletOptions contains settable parameters for hollow kubelet.
    type HollowKubeletOptions struct {
    	NodeName            string
    	KubeletPort         int
    	KubeletReadOnlyPort int
    	MaxPods             int
    	PodsPerCore         int
    	NodeLabels          map[string]string
    	RegisterWithTaints  []v1.Taint
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/discovery.k8s.io.v1.EndpointSlice.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/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: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/resource.k8s.io.v1alpha2.ResourceClaim.yaml

            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
        resourceHandles:
        - data: dataValue
          driverName: driverNameValue
          structuredData:
            nodeName: nodeNameValue
            results:
            - namedResources:
                name: nameValue
              vendorRequestParameters:
                apiVersion: example.com/v1
                kind: CustomType
                spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.ResourceClaim.json

                  "kind": "CustomType",
                  "spec": {
                    "replicas": 1
                  },
                  "status": {
                    "available": 1
                  }
                },
                "nodeName": "nodeNameValue",
                "results": [
                  {
                    "vendorRequestParameters": {
                      "apiVersion": "example.com/v1",
                      "kind": "CustomType",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/output/v1alpha3/types.go

    type ComponentUpgradePlan struct {
    	metav1.TypeMeta
    
    	Name           string `json:"name"`
    	CurrentVersion string `json:"currentVersion"`
    	NewVersion     string `json:"newVersion"`
    	NodeName       string `json:"nodeName,omitempty"`
    }
    
    // ComponentConfigVersionState describes the current and desired version of a component config
    type ComponentConfigVersionState struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pkg/apis/resource/v1alpha2/conversion.go

    	if err := scheme.AddFieldLabelConversionFunc(SchemeGroupVersion.WithKind("ResourceSlice"),
    		func(label, value string) (string, string, error) {
    			switch label {
    			case "metadata.name", "nodeName", "driverName":
    				return label, value, nil
    			default:
    				return "", "", fmt.Errorf("field label not supported for %s: %s", SchemeGroupVersion.WithKind("ResourceSlice"), label)
    			}
    		}); err != nil {
    		return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top