Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 343 for topology_1 (0.26 sec)

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

    limitations under the License.
    */
    
    package cpumanager
    
    import (
    	"k8s.io/kubernetes/pkg/kubelet/cm/cpumanager/topology"
    )
    
    var (
    	topoSingleSocketHT = &topology.CPUTopology{
    		NumCPUs:    8,
    		NumSockets: 1,
    		NumCores:   4,
    		CPUDetails: map[int]topology.CPUInfo{
    			0: {CoreID: 0, SocketID: 0, NUMANodeID: 0},
    			1: {CoreID: 1, SocketID: 0, NUMANodeID: 0},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 24 20:49:58 UTC 2021
    - 40.6K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/deployment/multinetwork.yaml

    metadata:
      annotations: {}
      labels:
        gateway.istio.io/managed: istio.io-gateway-controller
        gateway.networking.k8s.io/gateway-name: default
        istio.io/dataplane-mode: none
        istio.io/gateway-name: default
        topology.istio.io/network: network-1
      name: default-istio
      namespace: default
      ownerReferences:
      - apiVersion: gateway.networking.k8s.io/v1beta1
        kind: Gateway
        name: default
        uid: ""
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/types.go

    	// and is consulted to make Topology aware resource alignments
    	GetTopologyHints(pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint
    
    	// TopologyManager HintProvider provider indicates the Device Manager implements the Topology Manager Interface
    	// and is consulted to make Topology aware resource alignments per Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. \"company.com/zone\", \"company.com/region\"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  5. pkg/registry/discovery/endpointslice/strategy_test.go

    						DeprecatedTopology: map[string]string{corev1.LabelHostname: "node-1"},
    					},
    				},
    			},
    		},
    		{
    			name:      "v1 request, updated endpoints with topology node names + other topology fields",
    			v1Request: true,
    			originalEPS: &discovery.EndpointSlice{
    				Endpoints: []discovery.Endpoint{
    					{
    						Hostname:           ptr.To("hostname-1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/scope.go

    )
    
    type podTopologyHints map[string]map[string]TopologyHint
    
    // Scope interface for Topology Manager
    type Scope interface {
    	Name() string
    	GetPolicy() Policy
    	Admit(pod *v1.Pod) lifecycle.PodAdmitResult
    	// AddHintProvider adds a hint provider to manager to indicate the hint provider
    	// wants to be consoluted with when making topology hints
    	AddHintProvider(h HintProvider)
    	// AddContainer adds pod to Manager for tracking
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint-no-network-label.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      annotations: {}
      labels:
        gateway.istio.io/managed: istio.io-mesh-controller
        gateway.networking.k8s.io/gateway-name: namespace
        istio.io/gateway-name: namespace
        topology.istio.io/network: network-1
      name: namespace
      namespace: default
      ownerReferences:
      - apiVersion: gateway.networking.k8s.io/v1beta1
        kind: Gateway
        name: namespace
        uid: ""
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      annotations: {}
      labels:
        gateway.istio.io/managed: istio.io-mesh-controller
        gateway.networking.k8s.io/gateway-name: namespace
        istio.io/gateway-name: namespace
        topology.istio.io/network: network-1
      name: namespace
      namespace: default
      ownerReferences:
      - apiVersion: gateway.networking.k8s.io/v1beta1
        kind: Gateway
        name: namespace
        uid: ""
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. pkg/apis/discovery/validation/validation_test.go

    		addresses = append(addresses, fmt.Sprintf("10.1.2.%d", i%255))
    	}
    	return addresses
    }
    
    func generateTopology(n int) map[string]string {
    	topology := map[string]string{}
    	for i := 0; i < n; i++ {
    		topology[fmt.Sprintf("topology-%d", i)] = "example"
    	}
    	return topology
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 10:48:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/memorymanager/policy_static.go

    		}
    	}
    
    	return true
    }
    
    // extendTopologyManagerHint extends the topology manager hint, in case when it does not satisfy to the container request
    // the topology manager uses bitwise AND to merge all topology hints into the best one, so in case of the restricted policy,
    // it possible that we will get the subset of hint that we provided to the topology manager, in this case we want to extend
    // it to the original one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
Back to top