Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for ipAddresses (0.2 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. 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)
  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. pkg/apis/certificates/helpers.go

    	if !reflect.DeepEqual([]string{"system:nodes"}, req.Subject.Organization) {
    		return organizationNotSystemNodesErr
    	}
    
    	// at least one of dnsNames or ipAddresses must be specified
    	if len(req.DNSNames) == 0 && len(req.IPAddresses) == 0 {
    		return dnsOrIPSANRequiredErr
    	}
    
    	if len(req.EmailAddresses) > 0 {
    		return emailSANNotAllowedErr
    	}
    	if len(req.URIs) > 0 {
    		return uriSANNotAllowedErr
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 4K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/named_certificates_test.go

    		BasicConstraintsValid: true,
    		IsCA:                  true,
    	}
    
    	if ip := netutils.ParseIPSloppy(host); ip != nil {
    		template.IPAddresses = append(template.IPAddresses, ip)
    	} else {
    		template.DNSNames = append(template.DNSNames, host)
    	}
    
    	template.IPAddresses = append(template.IPAddresses, alternateIPs...)
    	template.DNSNames = append(template.DNSNames, alternateDNS...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/test/csrctrl/authority/authority.go

    	}
    
    	tmpl := &x509.Certificate{
    		SerialNumber:       serialNumber,
    		Subject:            cr.Subject,
    		DNSNames:           cr.DNSNames,
    		IPAddresses:        cr.IPAddresses,
    		EmailAddresses:     cr.EmailAddresses,
    		URIs:               cr.URIs,
    		PublicKeyAlgorithm: cr.PublicKeyAlgorithm,
    		PublicKey:          cr.PublicKey,
    		Extensions:         cr.Extensions,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 28 18:22:37 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top