Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 188 for vips (0.31 sec)

  1. pkg/registry/core/service/ipallocator/cidrallocator_test.go

    		}
    		count++
    		if found.Has(ip.String()) {
    			t.Fatalf("allocated %s twice: %d", ip, count)
    		}
    		found.Insert(ip.String())
    	}
    	if count != 14 {
    		t.Fatalf("expected 14 IPs got %d", count)
    	}
    	if _, err := r.AllocateNext(); err == nil {
    		t.Fatal(err)
    	}
    
    	cidr2 := newServiceCIDR("test2", "10.0.0.0/28")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller.go

    // capture is enabled, Envoy will resolve the DNS to these IPs. The
    // listeners for TCP services will also be set up on these IPs. The
    // IPs allocated to a service entry may differ from istiod to istiod
    // but it does not matter because these IPs only affect the listener
    // IPs on a given proxy managed by a given istiod.
    //
    // NOTE: If DNS capture is not enabled by the proxy, the automatically
    // allocated IP addresses do not take effect.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  3. pkg/kubelet/pleg/generic.go

    }
    
    // getPodIP preserves an older cached status' pod IP if the new status has no pod IPs
    // and its sandboxes have exited
    func (g *GenericPLEG) getPodIPs(pid types.UID, status *kubecontainer.PodStatus) []string {
    	if len(status.IPs) != 0 {
    		return status.IPs
    	}
    
    	oldStatus, err := g.cache.Get(pid)
    	if err != nil || len(oldStatus.IPs) == 0 {
    		return nil
    	}
    
    	for _, sandboxStatus := range status.SandboxStatuses {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. pkg/kubelet/pleg/evented.go

    	}
    }
    
    func (e *EventedPLEG) getPodIPs(pid types.UID, status *kubecontainer.PodStatus) []string {
    	if len(status.IPs) != 0 {
    		return status.IPs
    	}
    
    	oldStatus, err := e.cache.Get(pid)
    	if err != nil || len(oldStatus.IPs) == 0 {
    		return nil
    	}
    
    	for _, sandboxStatus := range status.SandboxStatuses {
    		// If at least one sandbox is ready, then use this status update's pod IP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/app/cmd.go

    	if podIP.IsValid() {
    		// The first one must be the pod ip as we pick the first ip as pod ip in istiod.
    		proxyArgs.IPAddresses = []string{podIP.String()}
    	}
    
    	// Obtain all the IPs from the node
    	proxyAddrs := make([]string, 0)
    	if ipAddrs, ok := network.GetPrivateIPs(context.Background()); ok {
    		proxyAddrs = append(proxyAddrs, ipAddrs...)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	currentSubs sets.String,
    ) sets.String {
    	shouldSubscribe := sets.New[string]()
    
    	// First, we want to handle VIP subscriptions. Example:
    	// Client subscribes to VIP1. Pod1, part of VIP1, is sent.
    	// The client wouldn't be explicitly subscribed to Pod1, so it would normally ignore it.
    	// Since it is a part of VIP1 which we are subscribe to, add it to the subscriptions
    	for addr := range allAddresses {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    // limitations under the License.
    
    [[troubleshooting]]
    = Troubleshooting builds
    
    The following is a collection of common issues and suggestions for addressing them.
    You can get other tips and search the link:https://discuss.gradle.org/c/help-discuss[Gradle forums] and link:https://stackoverflow.com/questions/tagged/gradle[StackOverflow #gradle] answers.
    
    [[sec:troubleshooting_installation]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server.go

    		"A list of CIDR ranges that contain valid node IPs, or alternatively, the single string 'primary'. If set to a list of CIDRs, connections to NodePort services will only be accepted on node IPs in one of the indicated ranges. If set to 'primary', NodePort services will only be accepted on the node's primary IP(s) according to the Node object. If unset, NodePort connections will be accepted on all local IPs. This parameter is ignored if a config file is specified by --config.")...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/ipallocator.go

    		networkingv1alpha1.LabelIPAddressFamily: string(a.IPFamily()),
    		networkingv1alpha1.LabelManagedBy:       ControllerName,
    	}).AsSelectorPreValidated()
    	ips, err := a.ipAddressLister.List(ipLabelSelector)
    	if err != nil {
    		return
    	}
    	for _, ip := range ips {
    		f(netutils.ParseIPSloppy(ip.Name))
    	}
    }
    
    func (a *Allocator) CIDR() net.IPNet {
    	return *a.cidr
    }
    
    // for testing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  10. pkg/dns/client/dns.go

    	}
    }
    
    // Borrowed from https://github.com/coredns/coredns/blob/master/plugin/hosts/hosts.go
    // a takes a slice of ip string and returns a slice of A RRs.
    func a(host string, ips []netip.Addr) []dns.RR {
    	answers := make([]dns.RR, len(ips))
    	for i, ip := range ips {
    		r := new(dns.A)
    		r.Hdr = dns.RR_Header{Name: host, Rrtype: dns.TypeA, Class: dns.ClassINET, Ttl: defaultTTLInSeconds}
    		r.A = ip.AsSlice()
    		answers[i] = r
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top