Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 411 for ipaddresses (0.16 sec)

  1. pkg/registry/networking/rest/storage_settings.go

    	storage := map[string]rest.Storage{}
    
    	// ipaddress
    	if resource := "ipaddresses"; apiResourceConfigSource.ResourceEnabled(networkingapiv1alpha1.SchemeGroupVersion.WithResource(resource)) {
    		ipAddressStorage, err := ipaddressstore.NewREST(restOptionsGetter)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. pilot/pkg/autoregistration/connections.go

    	IP        string
    	GroupName string
    	Namespace string
    }
    
    func makeProxyKey(proxy *model.Proxy) proxyKey {
    	return proxyKey{
    		Network:   string(proxy.Metadata.Network),
    		IP:        proxy.IPAddresses[0],
    		GroupName: proxy.Metadata.AutoRegisterGroup,
    		Namespace: proxy.Metadata.Namespace,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. tests/fuzz/autoregistration_controller_fuzzer.go

    	stopped  bool
    }
    
    func makeConn(proxy *model.Proxy, connTime time.Time) *fakeConn {
    	return &fakeConn{proxy: proxy, connTime: connTime}
    }
    
    func (f *fakeConn) ID() string {
    	return fmt.Sprintf("%s-%v", f.proxy.IPAddresses[0], f.connTime)
    }
    
    func (f *fakeConn) Proxy() *model.Proxy {
    	return f.proxy
    }
    
    func (f *fakeConn) ConnectedAt() time.Time {
    	return f.connTime
    }
    
    func (f *fakeConn) Stop() {
    	f.stopped = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1alpha1/types_swagger_doc_generated.go

    	"items":    "items is the list of IPAddresses.",
    }
    
    func (IPAddressList) SwaggerDoc() map[string]string {
    	return map_IPAddressList
    }
    
    var map_IPAddressSpec = map[string]string{
    	"":          "IPAddressSpec describe the attributes in an IP Address.",
    	"parentRef": "ParentRef references the resource that an IPAddress is attached to. An IPAddress must reference a parent object.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  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. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/gateway/invalid-addresses.yaml

    kind: Gateway
    metadata:
      name: invalid-addresses
    spec:
      gatewayClassName: acme-lb
      addresses:
      - value: 1200:0000:::AB00:1234:0000:2552:7777:1313
      - value: 21DA:D3:0:2F3B:2AY:FF:FE28:9C5A
      - value: "2001:db8:3c4d:15:0:d234:3eee:"
      - value: "2001:db8:3c4d:15:0:d234:3eee:::"
      - value: ":::1234::"
      - value: "1.1.1"
      - value: "1.a.3.4"
      - value: "foo.com"
      - type: IPAddress
        value: "256.255.255.255"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 686 bytes
    - Viewed (0)
Back to top