Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 941 for ipaddresses (0.16 sec)

  1. staging/src/k8s.io/api/networking/v1alpha1/types.go

    // IPAddressList contains a list of IPAddress.
    type IPAddressList struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    	// items is the list of IPAddresses.
    	Items []IPAddress `json:"items" protobuf:"bytes,2,rep,name=items"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

    }
    
    // IPAddressList contains a list of IPAddress.
    message IPAddressList {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of IPAddresses.
      repeated IPAddress items = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/default_storage_factory_builder.go

    		// graduated to GA:
    		//
    		// TODO (https://github.com/kubernetes/kubernetes/issues/108451): remove the override in 1.25.
    		// apisstorage.Resource("csistoragecapacities").WithVersion("v1beta1"),
    		networking.Resource("ipaddresses").WithVersion("v1alpha1"),
    		networking.Resource("servicecidrs").WithVersion("v1alpha1"),
    		certificates.Resource("clustertrustbundles").WithVersion("v1alpha1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/crypto/x509/name_constraints_test.go

    				return nil, fmt.Errorf("cannot parse IP %q", name[3:])
    			}
    			template.IPAddresses = append(template.IPAddresses, ip)
    
    		case strings.HasPrefix(name, "invalidip:"):
    			ipBytes, err := hex.DecodeString(name[10:])
    			if err != nil {
    				return nil, fmt.Errorf("cannot parse invalid IP: %s", err)
    			}
    			template.IPAddresses = append(template.IPAddresses, net.IP(ipBytes))
    
    		case strings.HasPrefix(name, "email:"):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. pilot/pkg/autoregistration/controller.go

    		return ""
    	}
    	if len(proxy.IPAddresses) == 0 {
    		log.Errorf("auto-registration of %v failed: missing IP addresses", proxy.ID)
    		return ""
    	}
    	if len(proxy.Metadata.Namespace) == 0 {
    		log.Errorf("auto-registration of %v failed: missing namespace", proxy.ID)
    		return ""
    	}
    	p := []string{proxy.Metadata.AutoRegisterGroup, sanitizeIP(proxy.IPAddresses[0])}
    	if proxy.Metadata.Network != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. src/crypto/x509/parser.go

    					return fmt.Errorf("x509: cannot parse URI %q: invalid domain", uriStr)
    				}
    			}
    			uris = append(uris, uri)
    		case nameTypeIP:
    			switch len(data) {
    			case net.IPv4len, net.IPv6len:
    				ipAddresses = append(ipAddresses, data)
    			default:
    				return errors.New("x509: cannot parse IP address of length " + strconv.Itoa(len(data)))
    			}
    		}
    
    		return nil
    	})
    
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. src/crypto/x509/verify.go

    func (c *Certificate) VerifyHostname(h string) error {
    	// IP addresses may be written in [ ].
    	candidateIP := h
    	if len(h) >= 3 && h[0] == '[' && h[len(h)-1] == ']' {
    		candidateIP = h[1 : len(h)-1]
    	}
    	if ip := net.ParseIP(candidateIP); ip != nil {
    		// We only match IP addresses against IP SANs.
    		// See RFC 6125, Appendix B.2.
    		for _, candidate := range c.IPAddresses {
    			if ip.Equal(candidate) {
    				return nil
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent_test.go

    	}{
    		{
    			in: &Proxy{
    				Type:        model.SidecarProxy,
    				IPAddresses: []string{"10.1.1.0"},
    				ID:          "v0.default",
    				DNSDomain:   "default.svc.cluster.local",
    			},
    			out: "sidecar~10.1.1.0~v0.default~default.svc.cluster.local",
    		},
    		{
    			in: &Proxy{
    				Type:        model.Router,
    				ID:          "random",
    				IPAddresses: []string{"10.3.3.3"},
    				DNSDomain:   "local",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. pkg/controller/certificates/approver/sarapprove_test.go

    		Subject: pkix.Name{
    			CommonName:   b.cn,
    			Organization: b.orgs,
    		},
    		DNSNames:       b.dns,
    		EmailAddresses: b.emails,
    		IPAddresses:    b.ips,
    	}, pk)
    	if err != nil {
    		panic(err)
    	}
    	return &capi.CertificateSigningRequest{
    		Spec: capi.CertificateSigningRequestSpec{
    			Username:   b.requestor,
    			Usages:     b.usages,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  10. pkg/kubelet/certificate/kubelet.go

    		// don't return a template if we have no addresses to request for
    		if len(hostnames) == 0 && len(ips) == 0 {
    			return nil
    		}
    		return &x509.CertificateRequest{
    			Subject: pkix.Name{
    				CommonName:   fmt.Sprintf("system:node:%s", nodeName),
    				Organization: []string{"system:nodes"},
    			},
    			DNSNames:    hostnames,
    			IPAddresses: ips,
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top