Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for Devices (0.27 sec)

  1. pkg/apis/core/validation/validation.go

    		}
    		return true, false
    	}
    	return false, false
    }
    
    func mountNameAlreadyExists(name string, devices map[string]string) bool {
    	if _, ok := devices[name]; ok {
    		return true
    	}
    	return false
    }
    
    func mountPathAlreadyExists(mountPath string, devices map[string]string) bool {
    	for _, devPath := range devices {
    		if mountPath == devPath {
    			return true
    		}
    	}
    
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.10.md

    * Fix issue where on re-registration of device plugin, `allocatable` was not getting updated. This issue makes devices invisible to the Kubelet if device plugin restarts. Only work-around, if this fix is not there, is to restart the kubelet and then start device plugin. ([#63118](https://github.com/kubernetes/kubernetes/pull/63118), [@vikaschoudhary16](https://github.com/vikaschoudhary16))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// Valid values are "None", empty string (""), or a valid IP address. "None"
    	// can be specified for headless services when proxying is not required.
    	// Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if
    	// type is ExternalName.
    	// More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
    	// +optional
    	ClusterIP string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. prow/config/calico.yaml

                      to list tunnel devices like wireguard or vxlan (i.e., L3 devices)
                      in addition to BPFDataIfacePattern. That is, tunnel interfaces not
                      created by Calico, that Calico workload traffic flows over as well
                      as any interfaces that handle incoming traffic to nodeports and
                      services from outside the cluster.
                    type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.9.md

    * Fix issue where on re-registration of device plugin, `allocatable` was not getting updated. This issue makes devices invisible to the Kubelet if device plugin restarts. Only work-around, if this fix is not there, is to restart the kubelet and then start device plugin. ([#63118](https://github.com/kubernetes/kubernetes/pull/63118), [@vikaschoudhary16](https://github.com/vikaschoudhary16))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // as the clusterIP.
      // "ExternalName" aliases this service to the specified externalName.
      // Several other fields do not apply to ExternalName services.
      // More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
      // +optional
      optional string type = 4;
    
      // externalIPs is a list of IP addresses for which nodes in the cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"externalIPs":                   "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service.  These IPs are not managed by...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.17.md

    - Fixed cleanup of raw block devices after kubelet restart. ([#83451](https://github.com/kubernetes/kubernetes/pull/83451), [@jsafrane](https://github.com/jsafrane))
    - Add data cache flushing during unmount device for GCE-PD driver in Windows Server. ([#83591](https://github.com/kubernetes/kubernetes/pull/83591), [@jingxu97](https://github.com/jingxu97))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// as the clusterIP.
    	// "ExternalName" aliases this service to the specified externalName.
    	// Several other fields do not apply to ExternalName services.
    	// More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
    	// +optional
    	Type ServiceType `json:"type,omitempty" protobuf:"bytes,4,opt,name=type,casttype=ServiceType"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // as the clusterIP.
      // "ExternalName" aliases this service to the specified externalName.
      // Several other fields do not apply to ExternalName services.
      // More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
      // +optional
      optional string type = 4;
    
      // externalIPs is a list of IP addresses for which nodes in the cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top