Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for HealthzBindAddress (0.53 sec)

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

    enableSystemLogQuery: false
    enforceNodeAllocatable:
    - pods
    eventBurst: 100
    eventRecordQPS: 50
    evictionPressureTransitionPeriod: 5m0s
    failSwapOn: true
    fileCheckFrequency: 20s
    hairpinMode: promiscuous-bridge
    healthzBindAddress: 127.0.0.1
    healthzPort: 10248
    httpCheckFrequency: 20s
    imageGCHighThresholdPercent: 85
    imageGCLowThresholdPercent: 80
    imageMaximumGCAge: 0s
    imageMinimumGCAge: 2m0s
    iptablesDropBit: 15
    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

    enableSystemLogQuery: false
    enforceNodeAllocatable:
    - pods
    eventBurst: 10
    eventRecordQPS: 5
    evictionPressureTransitionPeriod: 5m0s
    failSwapOn: true
    fileCheckFrequency: 20s
    hairpinMode: promiscuous-bridge
    healthzBindAddress: 127.0.0.1
    healthzPort: 10248
    httpCheckFrequency: 20s
    imageGCHighThresholdPercent: 85
    imageGCLowThresholdPercent: 80
    imageMaximumGCAge: 0s
    imageMinimumGCAge: 2m0s
    iptablesDropBit: 15
    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

    				EventBurst:                                100,
    				EnableDebuggingHandlers:                   utilpointer.Bool(true),
    				HealthzPort:                               utilpointer.Int32(10248),
    				HealthzBindAddress:                        "127.0.0.1",
    				OOMScoreAdj:                               utilpointer.Int32(int32(qos.KubeletOOMScoreAdj)),
    				StreamingConnectionIdleTimeout:            metav1.Duration{Duration: 4 * time.Hour},
    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/proxy/apis/config/v1alpha1/zz_generated.conversion.go

    		return err
    	}
    	out.Logging = in.Logging
    	out.HostnameOverride = in.HostnameOverride
    	out.BindAddress = in.BindAddress
    	out.HealthzBindAddress = in.HealthzBindAddress
    	out.MetricsBindAddress = in.MetricsBindAddress
    	out.BindAddressHardFail = in.BindAddressHardFail
    	out.EnableProfiling = in.EnableProfiling
    	out.ShowHiddenMetricsForVersion = in.ShowHiddenMetricsForVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/v1beta1/defaults.go

    	}
    	if obj.EnableDebuggingHandlers == nil {
    		obj.EnableDebuggingHandlers = utilpointer.Bool(true)
    	}
    	if obj.HealthzPort == nil {
    		obj.HealthzPort = utilpointer.Int32(10248)
    	}
    	if obj.HealthzBindAddress == "" {
    		obj.HealthzBindAddress = "127.0.0.1"
    	}
    	if obj.OOMScoreAdj == nil {
    		obj.OOMScoreAdj = utilpointer.Int32(int32(qos.KubeletOOMScoreAdj))
    	}
    	if obj.StreamingConnectionIdleTimeout == zeroDuration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. pkg/proxy/apis/config/fuzzer/fuzzer.go

    			obj.Conntrack.TCPEstablishedTimeout = &metav1.Duration{Duration: time.Duration(c.Int63()) * time.Hour}
    			obj.FeatureGates = map[string]bool{c.RandString(): true}
    			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())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. pkg/proxy/apis/config/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(newPath.Child("BindAddress"), config.BindAddress, "not a valid textual representation of an IP address"))
    	}
    
    	if config.HealthzBindAddress != "" {
    		allErrs = append(allErrs, validateHostPort(config.HealthzBindAddress, newPath.Child("HealthzBindAddress"))...)
    	}
    	allErrs = append(allErrs, validateHostPort(config.MetricsBindAddress, newPath.Child("MetricsBindAddress"))...)
    
    	if config.ClusterCIDR != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    			obj.EnableControllerAttachDetach = true
    			obj.EnableDebuggingHandlers = true
    			obj.EnableSystemLogQuery = false
    			obj.FileCheckFrequency = metav1.Duration{Duration: 20 * time.Second}
    			obj.HealthzBindAddress = "127.0.0.1"
    			obj.HealthzPort = 10248
    			obj.HTTPCheckFrequency = metav1.Duration{Duration: 20 * time.Second}
    			obj.ImageMinimumGCAge = metav1.Duration{Duration: 2 * time.Minute}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    	if !ok {
    		return errors.New("could not convert the KubeletConfiguration to a typed object")
    	}
    	if err := waiter.WaitForKubelet(kubeletConfigTyped.HealthzBindAddress, *kubeletConfigTyped.HealthzPort); err != nil {
    		return handleError(err)
    	}
    
    	waiter.SetTimeout(data.Cfg().Timeouts.ControlPlaneComponentHealthCheck.Duration)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. pkg/proxy/apis/config/types.go

    	// not actually bind any sockets to this IP.
    	BindAddress string
    	// healthzBindAddress is the IP address and port for the health check server to
    	// serve on, defaulting to "0.0.0.0:10256" (if bindAddress is unset or IPv4), or
    	// "[::]:10256" (if bindAddress is IPv6).
    	HealthzBindAddress string
    	// metricsBindAddress is the IP address and port for the metrics server to serve
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top