Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for mtls (0.12 sec)

  1. cluster/gce/gci/configure-helper.sh

        # GRPC can work with either UDS or mTLS.
        params+=("--mode=http-connect")
        params+=("--server-port=8131")
        params+=("--agent-namespace=")
        params+=("--agent-service-account=")
        params+=("--authentication-audience=")
        # Need to fix ANP code to allow kubeconfig to be set with mtls.
        params+=("--kubeconfig=")
        params+=("--proxy-strategies=destHost,default")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    	})
    
    	// No policy visible, auto-mTLS should set to PERMISSIVE.
    	// For port 8080, (m)TLS settings is automatically added, thus its cluster should have TLS context.
    	// TlsContext is nil because we use socket match instead
    	g.Expect(getTLSContext(t, clusters[0])).To(BeNil())
    	g.Expect(clusters[0].TransportSocketMatches).To(HaveLen(2))
    
    	// For 9090, use the TLS settings are explicitly specified in DR (which disable TLS)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    		if tls.CaCrl != "" || tls.ServerCertificate != "" || tls.PrivateKey != "" || tls.CaCertificates != "" || tls.CredentialName != "" {
    			// Warn for backwards compatibility
    			v = AppendWarningf(v, "%v mode does not use certificates, they will be ignored", tls.Mode)
    		}
    	}
    
    	if (tls.Mode == networking.ServerTLSSettings_SIMPLE || tls.Mode == networking.ServerTLSSettings_MUTUAL ||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

    #
    # Assumed vars:
    #   REPLICA_NAME
    #   PROJECT
    #   EXISTING_MASTER_NAME
    #   EXISTING_MASTER_ZONE
    #
    # $1: etcd client port
    # $2: etcd internal port
    # $3: whether etcd communication should use mtls
    # returns the result of ssh command which adds replica
    function add-replica-to-etcd() {
      local -r client_port="${1}"
      local -r internal_port="${2}"
      local -r use_mtls="${3}"
    
      TLSARG=""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top