Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for localhostNodePorts (0.19 sec)

  1. pkg/proxy/apis/config/v1alpha1/defaults_test.go

    					QPS:         5,
    					Burst:       10,
    				},
    				IPTables: kubeproxyconfigv1alpha1.KubeProxyIPTablesConfiguration{
    					MasqueradeBit:      ptr.To[int32](14),
    					MasqueradeAll:      false,
    					LocalhostNodePorts: ptr.To(true),
    					SyncPeriod:         metav1.Duration{Duration: 30 * time.Second},
    					MinSyncPeriod:      metav1.Duration{Duration: 1 * time.Second},
    				},
    				IPVS: kubeproxyconfigv1alpha1.KubeProxyIPVSConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/roundtrip/default/v1alpha1.yaml

      udpTimeout: 0s
    detectLocal:
      bridgeInterface: ""
      interfaceNamePrefix: ""
    detectLocalMode: ""
    enableProfiling: false
    healthzBindAddress: 0.0.0.0:10256
    hostnameOverride: ""
    iptables:
      localhostNodePorts: true
      masqueradeAll: false
      masqueradeBit: 14
      minSyncPeriod: 1s
      syncPeriod: 30s
    ipvs:
      excludeCIDRs: null
      minSyncPeriod: 0s
      scheduler: ""
      strictARP: false
      syncPeriod: 30s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. 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)
  4. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/after/v1alpha1.yaml

      udpTimeout: 0s
    detectLocal:
      bridgeInterface: ""
      interfaceNamePrefix: ""
    detectLocalMode: ""
    enableProfiling: false
    healthzBindAddress: 0.0.0.0:10256
    hostnameOverride: ""
    iptables:
      localhostNodePorts: true
      masqueradeAll: false
      masqueradeBit: 14
      minSyncPeriod: 1s
      syncPeriod: 30s
    ipvs:
      excludeCIDRs: null
      minSyncPeriod: 0s
      scheduler: ""
      strictARP: false
      syncPeriod: 30s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/v1alpha1/zz_generated.conversion.go

    	out.MasqueradeBit = (*int32)(unsafe.Pointer(in.MasqueradeBit))
    	out.MasqueradeAll = in.MasqueradeAll
    	out.LocalhostNodePorts = (*bool)(unsafe.Pointer(in.LocalhostNodePorts))
    	out.SyncPeriod = in.SyncPeriod
    	out.MinSyncPeriod = in.MinSyncPeriod
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  6. 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)
  7. pkg/proxy/apis/config/v1alpha1/defaults.go

    	}
    	if obj.IPTables.MinSyncPeriod.Duration == 0 {
    		obj.IPTables.MinSyncPeriod = metav1.Duration{Duration: 1 * time.Second}
    	}
    	if obj.IPTables.LocalhostNodePorts == nil {
    		obj.IPTables.LocalhostNodePorts = ptr.To(true)
    	}
    	if obj.IPVS.SyncPeriod.Duration == 0 {
    		obj.IPVS.SyncPeriod = metav1.Duration{Duration: 30 * time.Second}
    	}
    	if obj.NFTables.SyncPeriod.Duration == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. pkg/proxy/apis/config/fuzzer/fuzzer.go

    			obj.HealthzBindAddress = fmt.Sprintf("%d.%d.%d.%d:%d", c.Intn(256), c.Intn(256), c.Intn(256), c.Intn(256), c.Intn(65536))
    			obj.IPTables.MasqueradeBit = ptr.To(c.Int31())
    			obj.IPTables.LocalhostNodePorts = ptr.To(c.RandBool())
    			obj.NFTables.MasqueradeBit = ptr.To(c.Int31())
    			obj.MetricsBindAddress = fmt.Sprintf("%d.%d.%d.%d:%d", c.Intn(256), c.Intn(256), c.Intn(256), c.Intn(256), c.Intn(65536))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top