Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for bindAddress (0.29 sec)

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

    		if err != nil {
    			return nil, "", fmt.Errorf("unexpected error when creating temp file: %v", err)
    		}
    
    		_, err = file.WriteString(`apiVersion: kubeproxy.config.k8s.io/v1alpha1
    bindAddress: 0.0.0.0
    bindAddressHardFail: false
    clientConnection:
      acceptContentTypes: ""
      burst: 10
      contentType: application/vnd.kubernetes.protobuf
      kubeconfig: /var/lib/kube-proxy/kubeconfig.conf
      qps: 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    		hostIP, err := secure.DefaultExternalAddress()
    		if err != nil {
    			return fmt.Errorf("Unable to find suitable network address.error='%v'. "+
    				"Try to set the AdvertiseAddress directly or provide a valid BindAddress to fix this.", err)
    		}
    		s.AdvertiseAddress = hostIP
    	}
    
    	return nil
    }
    
    // Validate checks validation of ServerRunOptions
    func (s *ServerRunOptions) Validate() []error {
    	errors := []error{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/options_test.go

    				ConcurrentPolicySyncs: 9,
    			},
    		},
    		SecureServing: (&apiserveroptions.SecureServingOptions{
    			BindPort:    10001,
    			BindAddress: netutils.ParseIPSloppy("192.168.4.21"),
    			ServerCert: apiserveroptions.GeneratableKeyCert{
    				CertDirectory: "/a/b/c",
    				PairName:      "kube-controller-manager",
    			},
    			HTTP2MaxStreamsPerConnection: 47,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.17.md

    - Kube-proxy: emits a warning when a malformed component config file is used with v1alpha1. ([#84143](https://github.com/kubernetes/kubernetes/pull/84143), [@phenixblue](https://github.com/phenixblue))
    - Set config.BindAddress to IPv4 address `127.0.0.1` if not specified ([#83822](https://github.com/kubernetes/kubernetes/pull/83822), [@zouyee](https://github.com/zouyee))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  5. CHANGELOG/CHANGELOG-1.8.md

    * To allow the userspace proxy to work correctly on multi-interface hosts when using the non-default-route interface, you may now set the `bindAddress` configuration option to an IP address assigned to a network interface.  The proxy will use that IP address for any required NAT operations instead of the IP address of the interface which has the default route. ([#48613](https://github.com/kub...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"bindAddress": {
    						SchemaProps: spec.SchemaProps{
    							Description: "bindAddress can be used to override kube-proxy's idea of what its node's primary IP is. Note that the name is a historical artifact, and kube-proxy does not actually bind any sockets to this IP.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.16.md

    * fix race condition when attach/delete azure disk in same time ([#84917](https://github.com/kubernetes/kubernetes/pull/84917), [@andyzhangx](https://github.com/andyzhangx))
    * set config.BindAddress to IPv4 address "127.0.0.1" if not specified ([#83822](https://github.com/kubernetes/kubernetes/pull/83822), [@zouyee](https://github.com/zouyee))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
Back to top