Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 186 for NodeName (0.12 sec)

  1. pkg/kubelet/cm/container_manager.go

    	podresources.CPUsProvider
    	podresources.DevicesProvider
    	podresources.MemoryProvider
    	podresources.DynamicResourcesProvider
    }
    
    type NodeConfig struct {
    	NodeName              types.NodeName
    	RuntimeCgroupsName    string
    	SystemCgroupsName     string
    	KubeletCgroupsName    string
    	KubeletOOMScoreAdj    int32
    	ContainerRuntime      string
    	CgroupsPerQOS         bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/options/constant.go

    	NetworkingPodSubnet = "pod-network-cidr"
    
    	// NodeCRISocket flag sets the CRI socket to connect to.
    	NodeCRISocket = "cri-socket"
    
    	// NodeName flag sets the node name.
    	NodeName = "node-name"
    
    	// SchedulerExtraArgs flag sets extra flags to pass to the Scheduler or override default ones in form of <flagname>=<value>".
    	SchedulerExtraArgs = "scheduler-extra-args"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

      // +k8s:conversion-gen=false
      // +optional
      optional string serviceAccount = 9;
    
      // NodeName is a request to schedule this pod onto a specific node. If it is non-empty,
      // the scheduler simply schedules this pod onto that node, assuming that it fits resource
      // requirements.
      // +optional
      optional string nodeName = 10;
    
      // Host networking requested for this pod. Use the host's network namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/gateway.yaml.injected

            - name: ISTIO_META_APP_CONTAINERS
            - name: ISTIO_META_CLUSTER_ID
              value: Kubernetes
            - name: ISTIO_META_NODE_NAME
              valueFrom:
                fieldRef:
                  fieldPath: spec.nodeName
            - name: ISTIO_META_INTERCEPTION_MODE
              value: REDIRECT
            - name: ISTIO_META_WORKLOAD_NAME
              value: istio-ingressgateway
            - name: ISTIO_META_OWNER
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    		err := rc.actualStateOfWorld.AddAttachUncertainReconstructedVolume(
    			//TODO: the devicePath might not be correct for some volume plugins: see issue #54108
    			gvl.volumeName, gvl.volumeSpec, rc.nodeName, gvl.devicePath)
    		if err != nil {
    			klog.ErrorS(err, "Could not add volume information to actual state of world", "volumeName", gvl.volumeName)
    			continue
    		}
    		var seLinuxMountContext string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

      // This field is deprecated and will be removed in future api versions.
      // +optional
      map<string, string> topology = 5;
    
      // nodeName represents the name of the Node hosting this endpoint. This can
      // be used to determine endpoints local to a Node.
      // +optional
      optional string nodeName = 6;
    
      // hints contains information associated with how an endpoint should be
      // consumed.
      // +featureGate=TopologyAwareHints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      attacher: attacherValue
      nodeName: nodeNameValue
      source:
        inlineVolumeSpec:
          accessModes:
          - accessModesValue
          awsElasticBlockStore:
            fsType: fsTypeValue
            partition: 3
            readOnly: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // This field is deprecated and will be removed in future api versions.
      // +optional
      map<string, string> topology = 5;
    
      // nodeName represents the name of the Node hosting this endpoint. This can
      // be used to determine endpoints local to a Node.
      // +optional
      optional string nodeName = 6;
    
      // hints contains information associated with how an endpoint should be
      // consumed.
      // +featureGate=TopologyAwareHints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // +k8s:conversion-gen=false
      // +optional
      optional string serviceAccount = 9;
    
      // NodeName is a request to schedule this carp onto a specific node. If it is non-empty,
      // the scheduler simply schedules this carp onto that node, assuming that it fits resource
      // requirements.
      // +optional
      optional string nodeName = 10;
    
      // Host networking requested for this carp. Use the host's network namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

      optional string attacher = 1;
    
      // source represents the volume that should be attached.
      optional VolumeAttachmentSource source = 2;
    
      // nodeName represents the node that the volume should be attached to.
      optional string nodeName = 3;
    }
    
    // VolumeAttachmentStatus is the status of a VolumeAttachment request.
    message VolumeAttachmentStatus {
      // attached indicates the volume is successfully attached.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top