Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for clientCIDR (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/addresses_test.go

    )
    
    func TestGetServerAddressByClientCIDRs(t *testing.T) {
    	publicAddressCIDRMap := []metav1.ServerAddressByClientCIDR{
    		{
    			ClientCIDR:    "0.0.0.0/0",
    			ServerAddress: "ExternalAddress",
    		},
    	}
    	internalAddressCIDRMap := []metav1.ServerAddressByClientCIDR{
    		publicAddressCIDRMap[0],
    		{
    			ClientCIDR:    "10.0.0.0/24",
    			ServerAddress: "serviceIP",
    		},
    	}
    	internalIP := "10.0.0.1"
    	publicIP := "1.1.1.1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.APIVersions.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 224 bytes
    - Viewed (0)
  3. api/openapi-spec/v3/api_openapi.json

            "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.",
            "properties": {
              "clientCIDR": {
                "default": "",
                "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/core.v1.APIGroup.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 411 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/addresses.go

    	// if this CIDR matches
    	Address string
    }
    
    func (d DefaultAddresses) ServerAddressByClientCIDRs(clientIP net.IP) []metav1.ServerAddressByClientCIDR {
    	addressCIDRMap := []metav1.ServerAddressByClientCIDR{
    		{
    			ClientCIDR:    "0.0.0.0/0",
    			ServerAddress: d.DefaultAddress,
    		},
    	}
    
    	for _, rule := range d.CIDRRules {
    		addressCIDRMap = append(addressCIDRMap, rule.ServerAddressByClientCIDRs(clientIP)...)
    	}
    	return addressCIDRMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:43 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io_openapi.json

            "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.",
            "properties": {
              "clientCIDR": {
                "default": "",
                "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch_openapi.json

            "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.",
            "properties": {
              "clientCIDR": {
                "default": "",
                "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__certificates.k8s.io_openapi.json

            "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.",
            "properties": {
              "clientCIDR": {
                "default": "",
                "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__discovery.k8s.io_openapi.json

            "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.",
            "properties": {
              "clientCIDR": {
                "default": "",
                "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__events.k8s.io_openapi.json

            "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.",
            "properties": {
              "clientCIDR": {
                "default": "",
                "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top