Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 522 for nodev1 (0.43 sec)

  1. 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)
  2. 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)
  3. pkg/proxy/node.go

    			"node", klog.KObj(node), "newPodCIDRs", podCIDRs, "oldPODCIDRs", n.podCIDRs)
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    	}
    }
    
    // OnNodeDelete is a handler for Node deletes.
    func (n *NodePodCIDRHandler) OnNodeDelete(node *v1.Node) {
    	n.logger.Error(nil, "Current Node is being deleted", "node", klog.KObj(node))
    }
    
    // OnNodeSynced is a handler for Node syncs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    		st.MakePod().Name("pod4").UID("pod4").SchedulerName("match-node3").Obj(),
    	}
    	wantBindings := map[string]string{
    		"pod1": "node3",
    		"pod2": "node2",
    		"pod3": "node2",
    		"pod4": "node3",
    	}
    	wantControllers := map[string]string{
    		"pod1": "match-node3",
    		"pod2": "match-node2",
    		"pod3": "match-node2",
    		"pod4": "match-node3",
    	}
    
    	// Set up scheduler for the 3 nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_attacher_test.go

    	}{
    		{
    			name:     "test ok 1 with PV",
    			nodeName: "node01",
    			attachID: getAttachmentName("vol01", "driver01", "node01"),
    			spec:     volume.NewSpecFromPersistentVolume(makeTestPV("pv01", 10, "driver01", "vol01"), false),
    		},
    		{
    			name:       "test failure, attach with volSrc",
    			nodeName:   "node01",
    			attachID:   getAttachmentName("vol01", "driver01", "node01"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				st.MakePod().Name("p2").UID("p2").Namespace(v1.NamespaceDefault).Node("node2").Req(mediumRes).Obj(),
    			},
    			// even though node1 will fail with error but node2 will still be returned as a valid nominated node.
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(largeRes).Label("error", "true").Obj(),
    				st.MakeNode().Name("node2").Capacity(largeRes).Obj(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. 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)
  8. guava/src/com/google/common/graph/AbstractNetwork.java

      }
    
      @Override
      public boolean hasEdgeConnecting(N nodeU, N nodeV) {
        checkNotNull(nodeU);
        checkNotNull(nodeV);
        return nodes().contains(nodeU) && successors(nodeU).contains(nodeV);
      }
    
      @Override
      public boolean hasEdgeConnecting(EndpointPair<N> endpoints) {
        checkNotNull(endpoints);
        if (!isOrderingCompatible(endpoints)) {
          return false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/graph/AbstractNetwork.java

        validateEndpoints(endpoints);
        return edgeConnectingOrNull(endpoints.nodeU(), endpoints.nodeV());
      }
    
      @Override
      public boolean hasEdgeConnecting(N nodeU, N nodeV) {
        checkNotNull(nodeU);
        checkNotNull(nodeV);
        return nodes().contains(nodeU) && successors(nodeU).contains(nodeV);
      }
    
      @Override
      public boolean hasEdgeConnecting(EndpointPair<N> endpoints) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector_test.go

    					pendingAttemptToDelete: []*node{makeNode(node1WithNamespace, virtual)},                                       // virtual node1 still not observed, got requeued
    				}),
    				// observe cluster-scoped parent
    				processEvent(makeAddEvent(node1)),
    				assertState(state{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top