Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 411 for ipaddresses (0.3 sec)

  1. pilot/pkg/util/network/ip.go

    				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
    // part must be enclosed in square brackets.
    //
    // LookupIPAddr() may return multiple IP addresses, of which this function returns
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 21:27:21 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/kubeadm/app/util/certs/util.go

    // the expected IPAddresses
    func AssertCertificateHasIPAddresses(t *testing.T, cert *x509.Certificate, IPAddresses ...net.IP) {
    	for _, IPAddress := range IPAddresses {
    		found := false
    		for _, val := range cert.IPAddresses {
    			if val.Equal(IPAddress) {
    				found = true
    				break
    			}
    		}
    
    		if !found {
    			t.Errorf("cert does not contain IPAddress %s", IPAddress)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. pkg/controller/certificates/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 23 19:36:11 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. pkg/istio-agent/health/health_check.go

    			h.HttpGet.Scheme = string(apimirror.URISchemeHTTP)
    		}
    		h.HttpGet.Scheme = strings.ToLower(h.HttpGet.Scheme)
    		if h.HttpGet.Host == "" {
    			if len(ipAddresses) == 0 || status.LegacyLocalhostProbeDestination.Get() {
    				h.HttpGet.Host = "localhost"
    			} else {
    				h.HttpGet.Host = ipAddresses[0]
    			}
    		}
    	}
    	return cfg
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:44 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  9. 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)
  10. pkg/registry/networking/ipaddress/storage/storage.go

    		NewListFunc:               func() runtime.Object { return &networking.IPAddressList{} },
    		DefaultQualifiedResource:  networking.Resource("ipaddresses"),
    		SingularQualifiedResource: networking.Resource("ipaddress"),
    
    		CreateStrategy: ipaddress.Strategy,
    		UpdateStrategy: ipaddress.Strategy,
    		DeleteStrategy: ipaddress.Strategy,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:58:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top