Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 328 for ipaddresses (0.26 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. pkg/apis/certificates/v1beta1/defaults_test.go

    	}
    	base := opts[0]
    	for _, opt := range opts[1:] {
    		if opt.cn != "" {
    			base.cn = opt.cn
    		}
    		if opt.org != "" {
    			base.org = opt.org
    		}
    		if opt.ipAddresses != nil {
    			base.ipAddresses = opt.ipAddresses
    		}
    		if opt.dnsNames != nil {
    			base.dnsNames = opt.dnsNames
    		}
    		if opt.emailAddresses != nil {
    			base.emailAddresses = opt.emailAddresses
    		}
    		if opt.uris != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/controller/repairip.go

    		gracePeriod := 60 * time.Second
    		if ipLifetime > gracePeriod {
    			runtime.HandleError(fmt.Errorf("IPAddress %s appears to have leaked: cleaning up", ipAddress.Name))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. 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)
  5. pilot/cmd/pilot-agent/app/cmd.go

    	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.
    	proxyArgs.DiscoverIPMode()
    
    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. 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)
  7. pilot/pkg/model/context.go

    	return port
    }
    
    // hasValidIPAddresses returns true if the input ips are all valid, otherwise returns false.
    func hasValidIPAddresses(ipAddresses []string) bool {
    	if len(ipAddresses) == 0 {
    		return false
    	}
    	for _, ipAddress := range ipAddresses {
    		if !netutil.IsValidIPAddress(ipAddress) {
    			return false
    		}
    	}
    	return true
    }
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  8. 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)
  9. pilot/pkg/xds/xds_test.go

    func TestServiceScoping(t *testing.T) {
    	baseProxy := func() *model.Proxy {
    		return &model.Proxy{
    			Metadata:        &model.NodeMetadata{},
    			ID:              "app.app",
    			Type:            model.SidecarProxy,
    			IPAddresses:     []string{"1.1.1.1"},
    			ConfigNamespace: "app",
    		}
    	}
    
    	t.Run("STATIC", func(t *testing.T) {
    		s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    			ConfigString: scopeConfig,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. pilot/pkg/autoregistration/controller_test.go

    		"missing group":      {IPAddresses: []string{"1.2.3.4"}, Metadata: &model.NodeMetadata{Namespace: wgA.Namespace}},
    		"missing ip":         {Metadata: &model.NodeMetadata{Namespace: wgA.Namespace, AutoRegisterGroup: wgA.Name}},
    		"missing namespace":  {IPAddresses: []string{"1.2.3.4"}, Metadata: &model.NodeMetadata{AutoRegisterGroup: wgA.Name}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
Back to top