Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for localhostNodePorts (0.29 sec)

  1. pkg/proxy/apis/config/zz_generated.deepcopy.go

    	*out = *in
    	if in.MasqueradeBit != nil {
    		in, out := &in.MasqueradeBit, &out.MasqueradeBit
    		*out = new(int32)
    		**out = **in
    	}
    	if in.LocalhostNodePorts != nil {
    		in, out := &in.LocalhostNodePorts, &out.LocalhostNodePorts
    		*out = new(bool)
    		**out = **in
    	}
    	out.SyncPeriod = in.SyncPeriod
    	out.MinSyncPeriod = in.MinSyncPeriod
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 15:12:28 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    	if !nodePortAddresses.ContainsIPv4Loopback() {
    		localhostNodePorts = false
    	}
    	if localhostNodePorts {
    		// Set the route_localnet sysctl we need for exposing NodePorts on loopback addresses
    		// Refer to https://issues.k8s.io/90259
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/types.go

    	// plugins.
    	MasqueradeAll bool
    	// localhostNodePorts, if false, tells kube-proxy to disable the legacy behavior
    	// of allowing NodePort services to be accessed via localhost. (Applies only to
    	// iptables mode and IPv4; localhost NodePorts are never allowed with other proxy
    	// modes or with IPv6.)
    	LocalhostNodePorts *bool
    	// syncPeriod is an interval (e.g. '5s', '1m', '2h22m') indicating how frequently
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. cmd/kube-proxy/app/server_linux.go

    				ctx,
    				ipt,
    				utilsysctl.New(),
    				exec.New(),
    				config.IPTables.SyncPeriod.Duration,
    				config.IPTables.MinSyncPeriod.Duration,
    				config.IPTables.MasqueradeAll,
    				*config.IPTables.LocalhostNodePorts,
    				int(*config.IPTables.MasqueradeBit),
    				localDetectors,
    				s.Hostname,
    				s.NodeIPs,
    				s.Recorder,
    				s.HealthzServer,
    				config.NodePortAddresses,
    				initOnly,
    			)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server_test.go

      tcpCloseWaitTimeout: 10s
      tcpEstablishedTimeout: 20s
    healthzBindAddress: "%s"
    hostnameOverride: "foo"
    iptables:
      masqueradeAll: true
      masqueradeBit: 17
      minSyncPeriod: 10s
      syncPeriod: 60s
      localhostNodePorts: true
    ipvs:
      minSyncPeriod: 10s
      syncPeriod: 60s
      excludeCIDRs:
        - "10.20.30.40/16"
        - "fd00:1::0/64"
    nftables:
      masqueradeAll: true
      masqueradeBit: 18
      minSyncPeriod: 10s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier_test.go

    			name: "ipv4, localhost-nodeports enabled",
    
    			family:             v1.IPv4Protocol,
    			localhostNodePorts: true,
    			nodePortAddresses:  nil,
    
    			allowAltNodeIP: true,
    			expectFirewall: true,
    		},
    		{
    			name: "ipv4, localhost-nodeports disabled",
    
    			family:             v1.IPv4Protocol,
    			localhostNodePorts: false,
    			nodePortAddresses:  nil,
    
    			allowAltNodeIP: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  7. cmd/kube-proxy/app/server.go

    	fs.BoolVar(o.config.IPTables.LocalhostNodePorts, "iptables-localhost-nodeports", ptr.Deref(o.config.IPTables.LocalhostNodePorts, true), "If false, kube-proxy will disable the legacy behavior of allowing NodePort services to be accessed via localhost. (Applies only to iptables mode and IPv4; localhost NodePorts are never allowed...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

      This will help users to identify if they rely on iptables.localhostNodePorts feature and ulitmately help them to migrate from iptables to nftables. ([#125015](https://github.com/kubernetes/kubernetes/pull/125015), [@aroradaman](https://github.com/aroradaman)) [SIG Instrumentation, Network and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     false,
    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"localhostNodePorts": {
    						SchemaProps: spec.SchemaProps{
    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