Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for PortRange (0.18 sec)

  1. cmd/kube-apiserver/app/options/options.go

    	PrimaryServiceClusterIPRange   net.IPNet
    	SecondaryServiceClusterIPRange net.IPNet
    	// APIServerServiceIP is the first valid IP from PrimaryServiceClusterIPRange
    	APIServerServiceIP net.IP
    
    	ServiceNodePortRange utilnet.PortRange
    
    	EndpointReconcilerType string
    
    	MasterCount int
    }
    
    // NewServerRunOptions creates a new ServerRunOptions object with default parameters
    func NewServerRunOptions() *ServerRunOptions {
    	s := ServerRunOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server_test.go

        - "fd00:1::0/64"
    nftables:
      masqueradeAll: true
      masqueradeBit: 18
      minSyncPeriod: 10s
      syncPeriod: 60s
    kind: KubeProxyConfiguration
    metricsBindAddress: "%s"
    mode: "%s"
    oomScoreAdj: 17
    portRange: "2-7"
    detectLocalMode: "ClusterCIDR"
    detectLocal:
      bridgeInterface: "cbr0"
      interfaceNamePrefix: "veth"
    nodePortAddresses:
      - "10.20.30.40/16"
      - "fd00:1::0/64"
    `
    
    	testCases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. pkg/registry/core/rest/storage_core.go

    	KubeletClientConfig kubeletclient.KubeletClientConfig
    }
    
    type ServicesConfig struct {
    	// Service IP ranges
    	ClusterIPRange          net.IPNet
    	SecondaryClusterIPRange net.IPNet
    	NodePortRange           utilnet.PortRange
    
    	IPRepairInterval time.Duration
    }
    
    type rangeRegistries struct {
    	clusterIP          rangeallocation.RangeRegistry
    	secondaryClusterIP rangeallocation.RangeRegistry
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  4. cmd/kube-proxy/app/server_linux_test.go

    ipvs:
      excludeCIDRs: null
      minSyncPeriod: 0s
      scheduler: ""
      syncPeriod: 30s
    kind: KubeProxyConfiguration
    metricsBindAddress: 127.0.0.1:10249
    mode: ""
    nodePortAddresses: null
    oomScoreAdj: -999
    portRange: ""
    detectLocalMode: "BridgeInterface"`)
    		if err != nil {
    			return nil, "", fmt.Errorf("unexpected error when writing content to temp kube-proxy config file: %v", err)
    		}
    
    		return file, tempDir, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. pkg/controlplane/instance.go

    	// the API server items and `Extra*` fields likely fit nicely together.
    
    	// The range of ports to be assigned to services with type=NodePort or greater
    	ServiceNodePortRange utilnet.PortRange
    	// If non-zero, the "kubernetes" services uses this port as NodePort.
    	KubernetesServiceNodePort int
    
    	// Number of masters running; all masters must be started with the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server.go

    	_ = fs.MarkDeprecated("metrics-port", "This flag is deprecated and will be removed in a future release. Please use --metrics-bind-address instead.")
    	fs.Var(utilflag.PortRangeVar{Val: &o.config.PortRange}, "proxy-port-range", "This was previously used to configure the userspace proxy, but is now unused.")
    	_ = fs.MarkDeprecated("proxy-port-range", "This flag has no effect and will be removed in a future release.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  7. pkg/registry/core/service/storage/storage_test.go

    	al, err := ipallocator.NewInMemory(cidr)
    	if err != nil {
    		panic(fmt.Sprintf("error creating IP allocator: %v", err))
    	}
    	return al
    }
    
    func makePortAllocator(ports machineryutilnet.PortRange) portallocator.Interface {
    	al, err := portallocator.NewInMemory(ports)
    	if err != nil {
    		panic(fmt.Sprintf("error creating port allocator: %v", err))
    	}
    	return al
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.21.md

     
    ## Changes by Kind
    
    ### API Change
    
    - Adds support for portRange / EndPort in Network Policy ([#97058](https://github.com/kubernetes/kubernetes/pull/97058), [@rikatz](https://github.com/rikatz)) [SIG Apps and Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"),
    						},
    					},
    					"portRange": {
    						SchemaProps: spec.SchemaProps{
    							Description: "portRange was previously used to configure the userspace proxy, but is now unused.",
    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top