Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 153 for Peer (0.22 sec)

  1. tests/integration/security/reachability_test.go

    				minIstioVersion string
    			}{
    				{
    					name: "global mtls strict",
    					configs: config.Sources{
    						config.File("testdata/reachability/global-peer-authn.yaml.tmpl"),
    						config.File("testdata/reachability/global-dr.yaml.tmpl"),
    					}.WithParams(param.Params{
    						mtlsModeParam:            model.MTLSStrict.String(),
    						tlsModeParam:             "ISTIO_MUTUAL",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/options.go

    	// PeerCAFile is the ca bundle used by this kube-apiserver to verify peer apiservers'
    	// serving certs when routing a request to the peer in the case the request can not be served
    	// locally due to version skew.
    	PeerCAFile string
    
    	// PeerAdvertiseAddress is the IP for this kube-apiserver which is used by peer apiservers to route a request
    	// to this apiserver. This happens in cases where the peer is not able to serve the request due to
    	// version skew.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

        }
        writerQueue.execute("$connectionName ping") {
          writePing(false, DEGRADED_PING, 0)
        }
      }
    
      class Builder(
        /** True if this peer initiated the connection; false if this peer accepted the connection. */
        internal var client: Boolean,
        internal val taskRunner: TaskRunner,
      ) {
        internal lateinit var socket: Socket
        internal lateinit var connectionName: String
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler_test.go

    			want: `
    			# HELP apiserver_rerouted_request_total [ALPHA] Total number of requests that were proxied to a peer kube apiserver because the local apiserver was not capable of serving it
    			# TYPE apiserver_rerouted_request_total counter
    			apiserver_rerouted_request_total{code="503"} 1
    			`,
    		},
    		{
    			desc:                 "503 unreachable peer public address",
    			requestPath:          "/api/foo/bar",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. cmd/endpoint.go

    }
    
    // FindGridHostsFromPeerStr will return a matching peer from provided peer (as string)
    func (l EndpointServerPools) FindGridHostsFromPeerStr(peer string) (peerGrid string) {
    	if peer == "" {
    		return ""
    	}
    	for _, ep := range l {
    		for _, endpoint := range ep.Endpoints {
    			if endpoint.IsLocal {
    				continue
    			}
    
    			if endpoint.Host == peer {
    				return endpoint.GridHost()
    			}
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta3/zz_generated.conversion.go

    	out.CertificatesDir = in.CertificatesDir
    	out.ImageRepository = in.ImageRepository
    	// INFO: in.CIImageRepository opted out of conversion generation
    	out.FeatureGates = *(*map[string]bool)(unsafe.Pointer(&in.FeatureGates))
    	out.ClusterName = in.ClusterName
    	// WARNING: in.EncryptionAlgorithm requires manual conversion: does not exist in peer-type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/etcd/local.go

    		{Name: "client-cert-auth", Value: "true"},
    		{Name: "peer-cert-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdPeerCertName)},
    		{Name: "peer-key-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdPeerKeyName)},
    		{Name: "peer-trusted-ca-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdCACertName)},
    		{Name: "peer-client-cert-auth", Value: "true"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  8. cluster/images/etcd/migrate/integration_test.go

    	err := getOrCreateTestCertFiles(certFile, keyFile, spec)
    	if err != nil {
    		t.Fatalf("failed to create server cert: %v", err)
    	}
    	return fmt.Sprintf("--peer-client-cert-auth --peer-trusted-ca-file=%s --peer-cert-file=%s --peer-key-file=%s", certFile, certFile, keyFile)
    }
    
    type TestCertSpec struct {
    	host       string
    	names, ips []string // in certificate
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/etcd/etcd.go

    )
    
    const etcdTimeout = 2 * time.Second
    
    // ErrNoMemberIDForPeerURL is returned when it is not possible to obtain a member ID
    // from a given peer URL
    var ErrNoMemberIDForPeerURL = errors.New("no member id found for peer URL")
    
    // ClusterInterrogator is an interface to get etcd cluster related information
    type ClusterInterrogator interface {
    	CheckClusterHealth() error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. cmd/perf-tests.go

    // RXSample holds the RX bytes for the duration between
    // the last peer to connect and the first peer to disconnect.
    // This is to improve the RX throughput accuracy.
    type netPerfRX struct {
    	RX                uint64    // RX bytes
    	lastToConnect     time.Time // time at which last peer to connect to us
    	firstToDisconnect time.Time // time at which the first peer disconnects from us
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top