Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for makeIPTablesUtilChains (0.22 sec)

  1. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/after/v1beta1.yaml

    kubeAPIQPS: 50
    localStorageCapacityIsolation: true
    logging:
      flushFrequency: 5s
      format: text
      options:
        json:
          infoBufferSize: "0"
        text:
          infoBufferSize: "0"
      verbosity: 0
    makeIPTablesUtilChains: true
    maxOpenFiles: 1000000
    maxPods: 110
    memoryManagerPolicy: None
    memorySwap: {}
    memoryThrottlingFactor: 0.9
    nodeLeaseDurationSeconds: 40
    nodeStatusMaxImages: 50
    nodeStatusReportFrequency: 5m0s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/roundtrip/default/v1beta1.yaml

    kubeAPIQPS: 50
    localStorageCapacityIsolation: true
    logging:
      flushFrequency: 5s
      format: text
      options:
        json:
          infoBufferSize: "0"
        text:
          infoBufferSize: "0"
      verbosity: 0
    makeIPTablesUtilChains: true
    maxOpenFiles: 1000000
    maxPods: 110
    memoryManagerPolicy: None
    memorySwap: {}
    memoryThrottlingFactor: 0.9
    nodeLeaseDurationSeconds: 40
    nodeStatusMaxImages: 50
    nodeStatusReportFrequency: 5m0s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				EvictionHard:                              nil,
    				EvictionPressureTransitionPeriod:          metav1.Duration{Duration: 5 * time.Minute},
    				EnableControllerAttachDetach:              utilpointer.Bool(true),
    				MakeIPTablesUtilChains:                    utilpointer.Bool(true),
    				IPTablesMasqueradeBit:                     utilpointer.Int32(DefaultIPTablesMasqueradeBit),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/v1beta1/defaults.go

    	}
    	if obj.EnableControllerAttachDetach == nil {
    		obj.EnableControllerAttachDetach = utilpointer.Bool(true)
    	}
    	if obj.MakeIPTablesUtilChains == nil {
    		obj.MakeIPTablesUtilChains = utilpointer.Bool(true)
    	}
    	if obj.IPTablesMasqueradeBit == nil {
    		obj.IPTablesMasqueradeBit = utilpointer.Int32(DefaultIPTablesMasqueradeBit)
    	}
    	if obj.IPTablesDropBit == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    			obj.KubeAPIBurst = 100
    			obj.HairpinMode = v1beta1.PromiscuousBridge
    			obj.EvictionHard = eviction.DefaultEvictionHard
    			obj.EvictionPressureTransitionPeriod = metav1.Duration{Duration: 5 * time.Minute}
    			obj.MakeIPTablesUtilChains = true
    			obj.IPTablesMasqueradeBit = kubeletconfigv1beta1.DefaultIPTablesMasqueradeBit
    			obj.IPTablesDropBit = kubeletconfigv1beta1.DefaultIPTablesDropBit
    			obj.CgroupsPerQOS = true
    			obj.CgroupDriver = "cgroupfs"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    		return err
    	}
    	out.ProtectKernelDefaults = in.ProtectKernelDefaults
    	if err := v1.Convert_Pointer_bool_To_bool(&in.MakeIPTablesUtilChains, &out.MakeIPTablesUtilChains, s); err != nil {
    		return err
    	}
    	if err := v1.Convert_Pointer_int32_To_int32(&in.IPTablesMasqueradeBit, &out.IPTablesMasqueradeBit, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/helpers_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. cmd/kubelet/app/options/options.go

    	fs.BoolVar(&c.MakeIPTablesUtilChains, "make-iptables-util-chains", c.MakeIPTablesUtilChains, "If true, kubelet will ensure iptables utility rules are present on host.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    		nodeIPValidator:                validateNodeIP,
    		clock:                          clock.RealClock{},
    		enableControllerAttachDetach:   kubeCfg.EnableControllerAttachDetach,
    		makeIPTablesUtilChains:         kubeCfg.MakeIPTablesUtilChains,
    		nodeStatusMaxImages:            nodeStatusMaxImages,
    		tracer:                         tracer,
    		nodeStartupLatencyTracker:      kubeDeps.NodeStartupLatencyTracker,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/types.go

    	ProtectKernelDefaults bool
    	// If true, Kubelet creates the KUBE-IPTABLES-HINT chain in iptables as a hint to
    	// other components about the configuration of iptables on the system.
    	MakeIPTablesUtilChains bool
    	// iptablesMasqueradeBit formerly controlled the creation of the KUBE-MARK-MASQ
    	// chain.
    	// Deprecated: no longer has any effect.
    	IPTablesMasqueradeBit int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top