Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for bindAddress (0.14 sec)

  1. cmd/kubeadm/app/componentconfigs/kubeproxy.go

    	}
    
    	defaultBindAddress := kubeProxyDefaultBindAddress(localAPIEndpoint.AdvertiseAddress)
    	if kp.config.BindAddress == "" {
    		kp.config.BindAddress = defaultBindAddress
    	} else if kp.config.BindAddress != defaultBindAddress {
    		warnDefaultComponentConfigValue(kind, "bindAddress", defaultBindAddress, kp.config.BindAddress)
    	}
    
    	if kp.config.ClusterCIDR == "" && cfg.Networking.PodSubnet != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 03:01:30 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server_test.go

    			mode:               "iptables",
    			bindAddress:        "9.8.7.6",
    			clusterCIDR:        "1.2.3.0/24",
    			healthzBindAddress: "1.2.3.4:12345",
    			metricsBindAddress: "2.3.4.5:23456",
    			extraConfig:        "bindAddress: 9.8.7.6",
    		},
    	}
    
    	for _, tc := range testCases {
    		expBindAddr := tc.bindAddress
    		if tc.bindAddress[0] == '"' {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/net/interface.go

    // ResolveBindAddress returns the IP address of a daemon, based on the given bindAddress:
    // If bindAddress is unset, it returns the host's default IP, as with ChooseHostInterface().
    // If bindAddress is unspecified or loopback, it returns the default IP of the same
    // address family as bindAddress.
    // Otherwise, it just returns bindAddress.
    func ResolveBindAddress(bindAddress net.IP) (net.IP, error) {
    	addressFamilies := preferIPv4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  4. pkg/proxy/apis/config/v1alpha1/defaults.go

    	return RegisterDefaults(scheme)
    }
    
    func SetDefaults_KubeProxyConfiguration(obj *kubeproxyconfigv1alpha1.KubeProxyConfiguration) {
    
    	if len(obj.BindAddress) == 0 {
    		obj.BindAddress = "0.0.0.0"
    	}
    
    	defaultHealthzAddress, defaultMetricsAddress := getDefaultAddresses(obj.BindAddress)
    
    	if obj.HealthzBindAddress == "" {
    		obj.HealthzBindAddress = fmt.Sprintf("%s:%v", defaultHealthzAddress, ports.ProxyHealthzPort)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/roundtrip/default/v1alpha1.yaml

    apiVersion: kubeproxy.config.k8s.io/v1alpha1
    bindAddress: 0.0.0.0
    bindAddressHardFail: false
    clientConnection:
      acceptContentTypes: ""
      burst: 10
      contentType: application/vnd.kubernetes.protobuf
      kubeconfig: ""
      qps: 5
    clusterCIDR: ""
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpBeLiberal: false
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
      udpStreamTimeout: 0s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. pkg/proxy/apis/config/types.go

    	HostnameOverride string
    	// 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.
    	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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	Required bool
    	// ExternalAddress is the address advertised, even if BindAddress is a loopback. By default this
    	// is set to BindAddress if the later no loopback, or to the first host interface address.
    	ExternalAddress net.IP
    
    	// Listener is the secure server network listener.
    	// either Listener or BindAddress/BindPort/BindNetwork is set,
    	// if Listener is set, use it and omit BindAddress/BindPort/BindNetwork.
    	Listener net.Listener
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/config_selfclient.go

    // LoopbackHostPort returns the host and port loopback REST clients should use
    // to contact the server.
    func LoopbackHostPort(bindAddress string) (string, string, error) {
    	host, port, err := net.SplitHostPort(bindAddress)
    	if err != nil {
    		// should never happen
    		return "", "", fmt.Errorf("invalid server bind address: %q", bindAddress)
    	}
    
    	isIPv6 := netutils.IsIPv6String(host)
    
    	// Value is expected to be an IP or DNS name, not "0.0.0.0".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 23 00:06:34 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/common.go

    			}
    			return defaultIP, nil
    		}
    		return nil, err
    	}
    	if bindAddress != nil && !bindAddress.IsUnspecified() && !reflect.DeepEqual(ip, bindAddress) {
    		klog.Warningf("WARNING: overriding requested API server bind address: requested %q, actual %q", bindAddress, ip)
    	}
    	return ip, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. istioctl/pkg/dashboard/dashboard.go

    )
    
    var (
    	listenPort     = 0
    	controlZport   = 0
    	promPort       = 0
    	grafanaPort    = 0
    	kialiPort      = 0
    	jaegerPort     = 0
    	zipkinPort     = 0
    	skywalkingPort = 0
    
    	bindAddress = ""
    
    	// open browser or not, default is true
    	browser = true
    
    	// label selector
    	labelSelector = ""
    
    	proxyAdminPort int
    )
    
    const (
    	defaultPrometheusPort = 9090
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
Back to top