Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 122 for topology (0.16 sec)

  1. pkg/kubelet/cm/cpumanager/policy_static_test.go

    	"k8s.io/kubernetes/pkg/kubelet/cm/cpumanager/state"
    	"k8s.io/kubernetes/pkg/kubelet/cm/cpumanager/topology"
    	"k8s.io/kubernetes/pkg/kubelet/cm/topologymanager"
    	"k8s.io/kubernetes/pkg/kubelet/cm/topologymanager/bitmask"
    	"k8s.io/utils/cpuset"
    )
    
    type staticPolicyTest struct {
    	description     string
    	topo            *topology.CPUTopology
    	numReservedCPUs int
    	reservedCPUs    *cpuset.CPUSet
    	podUID          string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. pkg/features/kube_features.go

    	// alpha: v1.21
    	// beta: v1.23
    	//
    	// Enables topology aware hints for EndpointSlices
    	TopologyAwareHints featuregate.Feature = "TopologyAwareHints"
    
    	// owner: @PiotrProkop
    	// kep: https://kep.k8s.io/3545
    	// alpha: v1.26
    	//
    	// Allow fine-tuning of topology manager policies with alpha options.
    	// This feature gate:
    	// - will guard *a group* of topology manager options whose quality level is alpha.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. pkg/api/pod/warnings_test.go

    				`spec.nodeSelector[failure-domain.beta.kubernetes.io/region]: deprecated since v1.17; use "topology.kubernetes.io/region" instead`,
    				`spec.nodeSelector[failure-domain.beta.kubernetes.io/zone]: deprecated since v1.17; use "topology.kubernetes.io/zone" instead`,
    			},
    		},
    		{
    			name: "node labels in affinity requiredDuringSchedulingIgnoredDuringExecution",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. pkg/controller/endpointslice/endpointslice_controller.go

    	// service that's inserted multiple times to be processed more than
    	// necessary.
    	serviceQueue workqueue.TypedRateLimitingInterface[string]
    
    	// topologyQueue is used to trigger a topology cache update and checking node
    	// topology distribution.
    	topologyQueue workqueue.TypedRateLimitingInterface[string]
    
    	// maxEndpointsPerSlice references the maximum number of endpoints that
    	// should be added to an EndpointSlice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumezone/volume_zone.go

    		return nil
    	}
    
    	for _, pvTopology := range podPVTopologies {
    		v, ok := node.Labels[pvTopology.key]
    		if !ok {
    			// if we can't match the beta label, try to match pv's beta label with node's ga label
    			v, ok = node.Labels[translateToGALabel(pvTopology.key)]
    		}
    		if !ok || !pvTopology.values.Has(v) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    	// cpuAccumulator was created) topology to learn things such as how many CPUs are on each
    	// socket, NUMA node, etc... .
    	topo *topology.CPUTopology
    
    	// `details` is the set of free CPUs that the cpuAccumulator can claim to accumulate the desired
    	// number of CPUS. When a CPU is claimed, it's removed from `details`.
    	details topology.CPUDetails
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. pkg/volume/csi/nodeinfomanager/nodeinfomanager_test.go

    							TopologyKeys: []string{"com.example.csi/zone"},
    							Allocatable:  nil,
    						},
    					},
    				},
    			},
    		},
    		{
    			name:       "pre-existing node info from the same driver, but without topology info",
    			driverName: "com.example.csi.driver1",
    			existingNode: generateNode(
    				nodeIDMap{
    					"com.example.csi.driver1": "com.example.csi/csi-node1",
    				},
    				nil /* labels */, nil /*capacity*/),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 17 02:02:59 UTC 2022
    - 34.3K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

                  fieldPath: spec.nodeName
            - name: ISTIO_META_INTERCEPTION_MODE
              value: "{{ .ProxyConfig.InterceptionMode.String }}"
            {{- with (valueOrDefault  (index .InfrastructureLabels "topology.istio.io/network") .Values.global.network) }}
            - name: ISTIO_META_NETWORK
              value: {{.|quote}}
            {{- end }}
            - name: ISTIO_META_WORKLOAD_NAME
              value: {{.DeploymentName|quote}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

        cloud.google.com/gke-os-distribution: cos
        failure-domain.beta.kubernetes.io/region: us-central1
        failure-domain.beta.kubernetes.io/zone: us-central1-b
        topology.kubernetes.io/region: us-central1
        topology.kubernetes.io/zone: us-central1-b
        kubernetes.io/hostname: node-default-pool-something
      name: node-default-pool-something
      resourceVersion: "211582541"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        cloud.google.com/gke-os-distribution: cos
        failure-domain.beta.kubernetes.io/region: us-central1
        failure-domain.beta.kubernetes.io/zone: us-central1-b
        topology.kubernetes.io/region: us-central1
        topology.kubernetes.io/zone: us-central1-b
        kubernetes.io/hostname: node-default-pool-something
      name: node-default-pool-something
      resourceVersion: "211582541"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top