Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for ipaddresses (0.26 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                properties:
                  addresses:
                    description: "Addresses lists the network addresses that have been
                      bound to the Gateway. \n This list may differ from the addresses
                      provided in the spec under some conditions: \n * no addresses are
                      specified, all addresses are dynamically assigned * a combination
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    		Endpoints: []discovery.Endpoint{{
    			Addresses:  []string{"10.0.1.1"},
    			Conditions: discovery.EndpointConditions{Ready: ptr.To(true)},
    			NodeName:   ptr.To(testHostname),
    		}, {
    			Addresses:  []string{"10.0.1.2"},
    			Conditions: discovery.EndpointConditions{Ready: ptr.To(true)},
    			NodeName:   ptr.To(testHostname),
    		}, {
    			Addresses:  []string{"10.0.1.3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    	// Validate no duplicate addresses in node status.
    	addresses := make(map[core.NodeAddress]bool)
    	for i, address := range node.Status.Addresses {
    		if _, ok := addresses[address]; ok {
    			allErrs = append(allErrs, field.Duplicate(field.NewPath("status", "addresses").Index(i), address))
    		}
    		addresses[address] = true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. prow/config/calico.yaml

                  bindMode:
                    description: BindMode indicates whether to listen for BGP connections
                      on all addresses (None) or only on the node's canonical IP address
                      Node.Spec.BGP.IPvXAddress (NodeIP). Default behaviour is to listen
                      for BGP connections on all addresses.
                    type: string
                  communities:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_EndpointPort
    }
    
    var map_EndpointSubset = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string appProtocol = 4;
    }
    
    // EndpointSubset is a group of addresses with a common set of ports. The
    // expanded set of endpoints is the Cartesian product of Addresses x Ports.
    // For example, given:
    //
    // 	{
    // 	  Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
    // 	  Ports:     [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
    // 	}
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    type EndpointSubset struct {
    	// IP addresses which offer the related ports that are marked as ready. These endpoints
    	// should be considered safe for load balancers and clients to utilize.
    	// +optional
    	// +listType=atomic
    	Addresses []EndpointAddress `json:"addresses,omitempty" protobuf:"bytes,1,rep,name=addresses"`
    	// IP addresses which offer the related ports but are not currently marked as ready
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string appProtocol = 4;
    }
    
    // EndpointSubset is a group of addresses with a common set of ports. The
    // expanded set of endpoints is the Cartesian product of Addresses x Ports.
    // For example, given:
    //
    // 	{
    // 	  Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
    // 	  Ports:     [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
    // 	}
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// The set of all endpoints is the union of all subsets.
    	Subsets []EndpointSubset
    }
    
    // EndpointSubset is a group of addresses with a common set of ports.  The
    // expanded set of endpoints is the Cartesian product of Addresses x Ports.
    // For example, given:
    //
    //	{
    //	  Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}],
    //	  Ports:     [{"name": "a", "port": 8675}, {"name": "b", "port": 309}]
    //	}
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.18.md

    - GCE Internal LoadBalancer sync loop will now release the ILB IP address upon sync failure. An error in ILB forwarding rule creation will no longer leak IP addresses. ([#97740](https://github.com/kubernetes/kubernetes/pull/97740), [@prameshj](https://github.com/prameshj)) [SIG Cloud Provider and Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
Back to top