Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for ipAddresses (0.29 sec)

  1. pkg/registry/core/service/ipallocator/controller/repairip_test.go

    			actions:     [][]string{{"delete", "ipaddresses"}, {"create", "ipaddresses"}},
    			events:      []string{"Warning ClusterIPNotAllocated the ClusterIP [IPv4]: 10.0.1.1 for Service bar/test-svc has a wrong reference; repairing"},
    		},
    		{
    			name: "reconcile IPAddresses dual stack",
    			svcs: []*v1.Service{newService("test-svc", []string{"10.0.1.1", "2001:db8::10"})},
    			ipAddresses: []*networkingv1alpha1.IPAddress{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  2. pilot/pkg/util/network/ip.go

    				continue
    			}
    			if unwrapAddr.IsUnspecified() {
    				ok = false
    				continue
    			}
    			ipAddresses = append(ipAddresses, unwrapAddr.String())
    		}
    	}
    	return ipAddresses, ok
    }
    
    // ResolveAddr resolves an authority address to an IP address. Incoming
    // addr can be an IP address or hostname. If addr is an IPv6 address, the IP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 21:27:21 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/context_test.go

    				Type:         model.Router,
    				ID:           "random",
    				IPAddresses:  []string{"10.3.3.3"},
    				DNSDomain:    "local",
    				Metadata:     &model.NodeMetadata{},
    				IstioVersion: model.MaxIstioVersion,
    			},
    			out: "router~10.3.3.3~random~local",
    		},
    		{
    			in: &model.Proxy{
    				Type:        model.SidecarProxy,
    				ID:          "random",
    				IPAddresses: []string{"10.3.3.3", "10.4.4.4", "10.5.5.5", "10.6.6.6"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/app/cmd.go

    	excludeAddrs := getExcludeInterfaces()
    	excludeAddrs.InsertAll(proxyArgs.IPAddresses...) // prevent duplicate IPs
    	proxyAddrs = slices.FilterInPlace(proxyAddrs, func(s string) bool {
    		return !excludeAddrs.Contains(s)
    	})
    
    	proxyArgs.IPAddresses = append(proxyArgs.IPAddresses, proxyAddrs...)
    	log.Debugf("proxy IPAddresses: %v", proxyArgs.IPAddresses)
    
    	// After IP addresses are set, let us discover IPMode.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. pkg/dns/server/name_table_test.go

    func TestNameTable(t *testing.T) {
    	mesh := &meshconfig.MeshConfig{RootNamespace: "istio-system"}
    	proxy := &model.Proxy{
    		IPAddresses: []string{"9.9.9.9"},
    		Metadata:    &model.NodeMetadata{},
    		Type:        model.SidecarProxy,
    		DNSDomain:   "testns.svc.cluster.local",
    	}
    	nw1proxy := &model.Proxy{
    		IPAddresses: []string{"9.9.9.9"},
    		Metadata:    &model.NodeMetadata{Network: "nw1"},
    		Type:        model.SidecarProxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. pkg/registry/core/service/ipallocator/controller/repairip.go

    	}).AsSelectorPreValidated()
    	ipAddresses, err := r.ipAddressLister.List(ipLabelSelector)
    	if err != nil {
    		return fmt.Errorf("unable to refresh the IPAddress block: %v", err)
    	}
    	// Check every IPAddress matches the corresponding Service, and rebuild the state as we think it should be.
    	for _, ipAddress := range ipAddresses {
    		key, err := cache.MetaNamespaceKeyFunc(ipAddress)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. pilot/pkg/xds/lds_test.go

    	t.Run("sidecar_none", func(t *testing.T) {
    		wd := t.TempDir()
    		adscon := s.Connect(&model.Proxy{
    			Metadata: &model.NodeMetadata{
    				InterceptionMode: model.InterceptionNone,
    				HTTP10:           "1",
    			},
    			IPAddresses:     []string{"10.11.0.1"}, // matches none.yaml s1tcp.none
    			ConfigNamespace: "none",
    		}, nil, watchAll)
    
    		err := adscon.Save(wd + "/none")
    		if err != nil {
    			t.Fatal(err)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/context.go

    	if hasValidIPAddresses(metadata.InstanceIPs) {
    		out.IPAddresses = metadata.InstanceIPs
    	} else if netutil.IsValidIPAddress(parts[1]) {
    		// Fall back, use IP from node id, it's only for backward-compatibility, IP should come from metadata
    		out.IPAddresses = append(out.IPAddresses, parts[1])
    	}
    
    	// Does query from ingress or router have to carry valid IP address?
    	if len(out.IPAddresses) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  9. api/discovery/apis__networking.k8s.io__v1alpha1.json

    {
      "apiVersion": "v1",
      "groupVersion": "networking.k8s.io/v1alpha1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "IPAddress",
          "name": "ipaddresses",
          "namespaced": false,
          "shortNames": [
            "ip"
          ],
          "singularName": "ipaddress",
          "storageVersionHash": "3APLM23DOxw=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    			ClusterID: c.Cluster(),
    		},
    		tlsMode:  model.GetTLSModeFromEndpointLabels(proxy.Labels),
    		nodeName: proxy.GetNodeName(),
    	}
    	var networkID network.ID
    	if len(proxy.IPAddresses) > 0 {
    		networkID = out.endpointNetwork(proxy.IPAddresses[0])
    	}
    	out.labels = labelutil.AugmentLabels(proxy.Labels, c.Cluster(), locality, out.nodeName, networkID)
    	return out
    }
    
    func (b *EndpointBuilder) buildIstioEndpoint(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top