Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for HealthzBindAddress (0.26 sec)

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

    	}
    }
    
    // Complete completes all the required options.
    func (o *Options) Complete(fs *pflag.FlagSet) error {
    	if len(o.ConfigFile) == 0 && len(o.WriteConfigTo) == 0 {
    		o.config.HealthzBindAddress = addressFromDeprecatedFlags(o.config.HealthzBindAddress, o.healthzPort)
    		o.config.MetricsBindAddress = addressFromDeprecatedFlags(o.config.MetricsBindAddress, o.metricsPort)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    		return err
    	}
    	out.EnableContentionProfiling = in.EnableContentionProfiling
    	if err := v1.Convert_Pointer_int32_To_int32(&in.HealthzPort, &out.HealthzPort, s); err != nil {
    		return err
    	}
    	out.HealthzBindAddress = in.HealthzBindAddress
    	if err := v1.Convert_Pointer_int32_To_int32(&in.OOMScoreAdj, &out.OOMScoreAdj, s); err != nil {
    		return err
    	}
    	out.ClusterDomain = in.ClusterDomain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/proxier.go

    	serviceHealthServer := healthcheck.NewServiceHealthServer(hostname, recorder, nodePortAddresses, healthzServer)
    
    	var healthzPort int
    	if len(healthzBindAddress) > 0 {
    		_, port, _ := net.SplitHostPort(healthzBindAddress)
    		healthzPort, _ = strconv.Atoi(port)
    	}
    
    	hcnImpl := newHcnImpl()
    	hns, supportedFeatures := newHostNetworkService(hcnImpl)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/helpers_test.go

    		"EvictionSoft[*]",
    		"EvictionSoftGracePeriod[*]",
    		"FailSwapOn",
    		"FeatureGates[*]",
    		"FileCheckFrequency.Duration",
    		"HTTPCheckFrequency.Duration",
    		"HairpinMode",
    		"HealthzBindAddress",
    		"HealthzPort",
    		"Logging.FlushFrequency",
    		"Logging.Format",
    		"Logging.Options.JSON.OutputRoutingOptions.InfoBufferSize.Quantity.Format",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/join/kubelet.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 {
    		fmt.Printf(kubeadmJoinFailMsg, err)
    		return err
    	}
    
    	if err := waitForTLSBootstrappedClient(cfg.Timeouts.TLSBootstrap.Duration); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server_linux_test.go

      qps: 5
    clusterCIDR: 10.244.0.0/16
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
    enableProfiling: false
    healthzBindAddress: 0.0.0.0:10256
    hostnameOverride: ""
    iptables:
      masqueradeAll: false
      masqueradeBit: 14
      minSyncPeriod: 0s
      syncPeriod: 30s
    ipvs:
      excludeCIDRs: null
      minSyncPeriod: 0s
      scheduler: ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/types.go

    	EnableContentionProfiling bool
    	// healthzPort is the port of the localhost healthz endpoint (set to 0 to disable)
    	HealthzPort int32
    	// healthzBindAddress is the IP address for the healthz server to serve on
    	HealthzBindAddress string
    	// oomScoreAdj is The oom-score-adj value for kubelet process. Values
    	// must be within the range [-1000, 1000].
    	OOMScoreAdj 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)
  8. cmd/kubelet/app/options/options.go

    	fs.Int32Var(&c.HealthzPort, "healthz-port", c.HealthzPort, "The port of the localhost healthz endpoint (set to 0 to disable)")
    	fs.Var(&utilflag.IPVar{Val: &c.HealthzBindAddress}, "healthz-bind-address", "The IP address for the healthz server to serve on (set to '0.0.0.0' or '::' for listening on all interfaces and IP address families)")
    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. cmd/kubelet/app/server.go

    		return err
    	}
    
    	if s.HealthzPort > 0 {
    		mux := http.NewServeMux()
    		healthz.InstallHandler(mux)
    		go wait.Until(func() {
    			err := http.ListenAndServe(net.JoinHostPort(s.HealthzBindAddress, strconv.Itoa(int(s.HealthzPort))), mux)
    			if err != nil {
    				klog.ErrorS(err, "Failed to start healthz server")
    			}
    		}, 5*time.Second, wait.NeverStop)
    	}
    
    	if s.RunOnce {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.23.md

    - Kube-scheduler: the `--port` and `--address` flags have no effect and would be removed in v1.24.
      The insecure port flags `--port` may only be set to 0 now.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top