Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 327 for nodev1 (0.19 sec)

  1. pkg/controlplane/instance.go

    	apiv1 "k8s.io/api/core/v1"
    	discoveryv1 "k8s.io/api/discovery/v1"
    	eventsv1 "k8s.io/api/events/v1"
    	networkingapiv1 "k8s.io/api/networking/v1"
    	networkingapiv1alpha1 "k8s.io/api/networking/v1alpha1"
    	nodev1 "k8s.io/api/node/v1"
    	policyapiv1 "k8s.io/api/policy/v1"
    	rbacv1 "k8s.io/api/rbac/v1"
    	resourcev1alpha2 "k8s.io/api/resource/v1alpha2"
    	schedulingapiv1 "k8s.io/api/scheduling/v1"
    	storageapiv1 "k8s.io/api/storage/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    			Volumes: []corev1.Volume{
    				{VolumeSource: corev1.VolumeSource{Secret: &corev1.SecretVolumeSource{SecretName: "node1-only"}}},
    				{VolumeSource: corev1.VolumeSource{Secret: &corev1.SecretVolumeSource{SecretName: "node1-node2-only"}}},
    				{VolumeSource: corev1.VolumeSource{Secret: &corev1.SecretVolumeSource{SecretName: "shared-all"}}},
    			},
    		},
    	})
    	g.AddPod(&corev1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  3. pkg/controller/tainteviction/taint_eviction_test.go

    	testCases := []struct {
    		description  string
    		pods         []corev1.Pod
    		prevPod      *corev1.Pod
    		newPod       *corev1.Pod
    		oldNode      *corev1.Node
    		newNode      *corev1.Node
    		expectPatch  bool
    		expectDelete bool
    	}{
    		{
    			description: "existing pod2 scheduled onto tainted Node",
    			pods: []corev1.Pod{
    				*testutil.NewPod("pod1", "node1"),
    			},
    			prevPod:      testutil.NewPod("pod2", ""),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  4. pkg/scheduler/testing/framework/fake_extender.go

    // when the given node's name is "node1"; otherwise return false.
    func Node1PredicateExtender(pod *v1.Pod, node *framework.NodeInfo) *framework.Status {
    	if node.Node().Name == "node1" {
    		return framework.NewStatus(framework.Success)
    	}
    	return framework.NewStatus(framework.Unschedulable, fmt.Sprintf("node %q is not allowed", node.Node().Name))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/network_test.go

    	clienttest.Wrap(t, c.services).Create(&corev1.Service{
    		ObjectMeta: metav1.ObjectMeta{Name: "istio-meshnetworks-gw", Namespace: "istio-system"},
    		Spec: corev1.ServiceSpec{
    			Type:  corev1.ServiceTypeLoadBalancer,
    			Ports: []corev1.ServicePort{{Port: 15443, Protocol: corev1.ProtocolTCP}},
    		},
    		Status: corev1.ServiceStatus{LoadBalancer: corev1.LoadBalancerStatus{Ingress: []corev1.LoadBalancerIngress{{
    			IP:    "1.2.3.4",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_serviceentry_test.go

    					ClusterId:         testC,
    					Node:              "node1",
    					CanonicalName:     "a",
    					CanonicalRevision: "latest",
    					ServiceAccount:    "sa1",
    					WorkloadType:      workloadapi.WorkloadType_POD,
    					WorkloadName:      "pod1",
    				},
    			},
    		},
    	}})
    
    	s.addPods(t, "140.140.0.11", "pod2", "sa1", map[string]string{"app": "other"}, nil, true, corev1.PodRunning)
    	s.assertEvent(t, s.podXdsName("pod2"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:01:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    			},
    			expectedList: []framework.NodeScore{{Name: "node1", Score: 0}, {Name: "node2", Score: 0}, {Name: "node3", Score: 0}},
    			runPreScore:  true,
    		},
    		{
    			name: "only node1 matches the preferred scheduling requirements of pod",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					Affinity: affinity1,
    				},
    			},
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/noder/noder.go

    	noders := make([]*noder, len(filenames))
    	for i := range noders {
    		p := noder{
    			err: make(chan syntax.Error),
    		}
    		noders[i] = &p
    	}
    
    	// Move the entire syntax processing logic into a separate goroutine to avoid blocking on the "sem".
    	go func() {
    		for i, filename := range filenames {
    			filename := filename
    			p := noders[i]
    			sem <- struct{}{}
    			go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    COMPONENT   NODE      CURRENT   TARGET
    kubelet     node1     v1.19.2   v1.19.3
    kubelet     node2     v1.19.3   v1.19.3
    kubelet     node3     v1.19.3   v1.19.3
    
    Upgrade to the latest version in the v1.19 series:
    
    COMPONENT                 NODE      CURRENT   TARGET
    kube-apiserver            node1     v1.19.2   v1.19.3
    kube-controller-manager   node1     v1.19.2   v1.19.3
    kube-scheduler            node1     v1.19.2   v1.19.3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Node("node1").Obj(),
    				st.MakePod().Node("node1").Obj(),
    				st.MakePod().Node("node2").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
Back to top