Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetTlsDefaults (0.21 sec)

  1. pilot/pkg/networking/core/cluster_tls.go

    						ValidationContextSdsSecretConfig: sec_model.ConstructSdsSecretConfig(res.GetRootResourceName()),
    					},
    				}
    
    			}
    		}
    
    		applyTLSDefaults(tlsContext, opts.mesh.GetTlsDefaults())
    
    		if cb.isHttp2Cluster(c) {
    			// This is HTTP/2 cluster, advertise it with ALPN.
    			tlsContext.CommonTlsContext.AlpnProtocols = util.ALPNH2Only
    		}
    
    	case networking.ClientTLSSettings_MUTUAL:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    	}
    
    	if isSimpleOrMutual(serverTLSSettings.Mode) {
    		// If Mesh TLSDefaults are set, use them.
    		applyDownstreamTLSDefaults(mesh.GetTlsDefaults(), ctx.CommonTlsContext)
    		applyServerTLSSettings(serverTLSSettings, ctx.CommonTlsContext)
    	}
    
    	// Compliance for Envoy TLS downstreams.
    	authnmodel.EnforceCompliance(ctx.CommonTlsContext)
    	return ctx
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top