Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for HealthzBindAddress (0.3 sec)

  1. cmd/kube-proxy/app/server_test.go

    		bindAddress        string
    		clusterCIDR        string
    		healthzBindAddress string
    		metricsBindAddress string
    		extraConfig        string
    	}{
    		{
    			name:               "iptables mode, IPv4 all-zeros bind address",
    			mode:               "iptables",
    			bindAddress:        "0.0.0.0",
    			clusterCIDR:        "1.2.3.0/24",
    			healthzBindAddress: "1.2.3.4:12345",
    			metricsBindAddress: "2.3.4.5:23456",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/componentconfigs/kubelet_test.go

    							Enabled: ptr.To(kubeletAuthenticationWebhookEnabled),
    						},
    					},
    					Authorization: kubeletconfig.KubeletAuthorization{
    						Mode: kubeletconfig.KubeletAuthorizationModeWebhook,
    					},
    					HealthzBindAddress: kubeletHealthzBindAddress,
    					HealthzPort:        ptr.To[int32](constants.KubeletHealthzPort),
    					RotateCertificates: kubeletRotateCertificates,
    					CgroupDriver:       constants.CgroupDriverSystemd,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/validation/validation_test.go

    					}
    				}
    			},
    		},
    		"empty HealthzBindAddress": {
    			mutateConfigFunc: func(config *kubeproxyconfig.KubeProxyConfiguration) {
    				config.HealthzBindAddress = ""
    			},
    		},
    		"IPv6": {
    			mutateConfigFunc: func(config *kubeproxyconfig.KubeProxyConfiguration) {
    				config.BindAddress = "fd00:192:168:59::103"
    				config.HealthzBindAddress = ""
    				config.MetricsBindAddress = "[::1]:10249"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/componentconfigs/kubelet.go

    	// Serve a /healthz webserver on 127.0.0.1:10248 that kubeadm can talk to
    	if kc.config.HealthzBindAddress == "" {
    		kc.config.HealthzBindAddress = kubeletHealthzBindAddress
    	} else if kc.config.HealthzBindAddress != kubeletHealthzBindAddress {
    		warnDefaultComponentConfigValue(kind, "healthzBindAddress", kubeletHealthzBindAddress, kc.config.HealthzBindAddress)
    	}
    
    	if kc.config.HealthzPort == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server_windows.go

    			s.Recorder,
    			s.HealthzServer,
    			config.HealthzBindAddress,
    			config.Winkernel,
    		)
    	} else {
    		proxier, err = winkernel.NewProxier(
    			s.PrimaryIPFamily,
    			config.IPTables.SyncPeriod.Duration,
    			config.IPTables.MinSyncPeriod.Duration,
    			s.Hostname,
    			s.NodeIPs[s.PrimaryIPFamily],
    			s.Recorder,
    			s.HealthzServer,
    			config.HealthzBindAddress,
    			config.Winkernel,
    		)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top