Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 118 for logback (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	DisableHTTP2Serving bool
    	// Required set to true means that BindPort cannot be zero.
    	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,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  2. cmd/kubeadm/app/preflight/checks_test.go

    	var tests = []struct {
    		name           string
    		check          HTTPProxyCheck
    		expectWarnings bool
    	}{
    		{
    			name: "Loopback address",
    			check: HTTPProxyCheck{
    				Proto: "https",
    				Host:  "127.0.0.1",
    			}, // Loopback addresses never should produce proxy warnings
    			expectWarnings: false,
    		},
    		{
    			name: "IPv4 direct access",
    			check: HTTPProxyCheck{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    type PreShutdownHookFunc func() error
    
    // PostStartHookContext provides information about this API server to a PostStartHookFunc
    type PostStartHookContext struct {
    	// LoopbackClientConfig is a config for a privileged loopback connection to the API server
    	LoopbackClientConfig *restclient.Config
    	// StopCh is the channel that will be closed when the server stops.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. samples/kind-lb/setupkind.sh

    while : ; do
      ip=$(docker inspect -f '{{range.NetworkSettings.Networks}}{{.'${addrName}'}}{{end}}' "${CLUSTERNAME}"-control-plane)
      if [[ -n "${ip}" ]]; then
        #Change the kubeconfig file not to use the loopback IP
        if [[ "${IPFAMILY}" == "ipv6" ]]; then
          ip="[${ip}]"
        elif [[ "${IPFAMILY}" == "dual" ]] && [[ "${IPV6GW}" == "true" ]]; then
          ip="[${ip}]"
        fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/server.go

    		// stop printing usage when the command errors
    		SilenceUsage: true,
    		PersistentPreRunE: func(*cobra.Command, []string) error {
    			// silence client-go warnings.
    			// kube-apiserver loopback clients should not log self-issued warnings.
    			rest.SetDefaultWarningHandler(rest.NoWarnings{})
    			return nil
    		},
    		RunE: func(cmd *cobra.Command, args []string) error {
    			verflag.PrintAndExitIfRequested()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/testing/testserver.go

    	s.RecommendedOptions.SecureServing.ServerCert.CertDirectory = result.TmpDir
    	s.RecommendedOptions.SecureServing.ExternalAddress = s.RecommendedOptions.SecureServing.Listener.Addr().(*net.TCPAddr).IP // use listener addr although it is a loopback device
    
    	pkgPath, err := pkgPath(t)
    	if err != nil {
    		return result, err
    	}
    	s.RecommendedOptions.SecureServing.ServerCert.FixtureDirectory = filepath.Join(pkgPath, "testdata")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 9K bytes
    - Viewed (1)
  7. manifests/addons/dashboards/istio-mesh-dashboard.json

            "show": true,
            "values": []
          },
          "yaxes": [
            {
              "format": "short",
              "logBase": 1,
              "show": true
            },
            {
              "format": "short",
              "logBase": 1,
              "show": false
            }
          ],
          "yaxis": {
            "align": false
          }
        }
      ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_test.go

    127.0.0.1	localhost
    ::1	localhost ip6-localhost ip6-loopback
    fe00::0	ip6-localnet
    fe00::0	ip6-mcastprefix
    fe00::1	ip6-allnodes
    fe00::2	ip6-allrouters
    123.45.67.89	some.domain
    `,
    			expectedHostsFileContent: `# Kubernetes-managed hosts file (host network).
    # hosts file for testing.
    127.0.0.1	localhost
    ::1	localhost ip6-localhost ip6-loopback
    fe00::0	ip6-localnet
    fe00::0	ip6-mcastprefix
    fe00::1	ip6-allnodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. cmd/endpoint.go

    func hostResolveToLocalhost(endpoint Endpoint) bool {
    	hostIPs, err := getHostIP(endpoint.Hostname())
    	if err != nil {
    		return false
    	}
    	var loopback int
    	for _, hostIP := range hostIPs.ToSlice() {
    		if net.ParseIP(hostIP).IsLoopback() {
    			loopback++
    		}
    	}
    	return loopback == len(hostIPs)
    }
    
    // UpdateIsLocal - resolves the host and discovers the local host.
    func (endpoints Endpoints) UpdateIsLocal() error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    // A nil URL and nil error are returned if no proxy is defined in the
    // environment, or a proxy should not be used for the given request, as
    // defined by NO_PROXY.
    //
    // As a special case, if req.URL.Host is "localhost" or a loopback address
    // (with or without a port number), then a nil URL and nil error will be returned.
    func (cfg *Config) ProxyFunc() func(reqURL *url.URL) (*url.URL, error) {
    	// Preprocess the Config settings for more efficient evaluation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top