Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for cluster0 (0.12 sec)

  1. pkg/kubelet/kubelet_pods.go

    	buffer.WriteString("fe00::1\tip6-allnodes\n")
    	buffer.WriteString("fe00::2\tip6-allrouters\n")
    	if len(hostDomainName) > 0 {
    		// host entry generated for all IPs in podIPs
    		// podIPs field is populated for clusters even
    		// dual-stack feature flag is not enabled.
    		for _, hostIP := range hostIPs {
    			buffer.WriteString(fmt.Sprintf("%s\t%s.%s\t%s\n", hostIP, hostName, hostDomainName, hostName))
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    func buildService(name, namespace, clusterIP, protocol string, port int) *v1.Service {
    	return &v1.Service{
    		ObjectMeta: metav1.ObjectMeta{Name: name, Namespace: namespace},
    		Spec: v1.ServiceSpec{
    			Ports: []v1.ServicePort{{
    				Protocol: v1.Protocol(protocol),
    				Port:     int32(port),
    			}},
    			ClusterIP: clusterIP,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    		{Name: "Type", Type: "string", Description: apiv1.ServiceSpec{}.SwaggerDoc()["type"]},
    		{Name: "Cluster-IP", Type: "string", Description: apiv1.ServiceSpec{}.SwaggerDoc()["clusterIP"]},
    		{Name: "External-IP", Type: "string", Description: apiv1.ServiceSpec{}.SwaggerDoc()["externalIPs"]},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    	//
    	// Extended resources missing in node status are ignored in PredicateAdmit.
    	// This is required to support extended resources that are not managed by
    	// device plugin, such as cluster-level resources.
    	missingPodSpec := v1.PodSpec{NodeName: string(kl.nodeName),
    		Containers: []v1.Container{{Resources: v1.ResourceRequirements{
    			Limits: v1.ResourceList{
    				missingResource: resourceQuantity2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			logger, ctx := ktesting.NewTestContext(t)
    			ctx, cancel := context.WithCancel(ctx)
    			defer cancel()
    
    			// create three nodes in the cluster.
    			nodes := makeNodeList([]string{"node1", "node2", "node3"})
    			client := clientsetfake.NewSimpleClientset(test.pod)
    			informerFactory := informers.NewSharedInformerFactory(client, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top