Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getTLS (0.09 sec)

  1. pkg/config/analysis/analyzers/destinationrule/ca-certificates.go

    	drNs := r.Metadata.FullName.Namespace
    	drName := r.Metadata.FullName.String()
    	mode := dr.GetTrafficPolicy().GetTls().GetMode()
    	if mode == v1alpha3.ClientTLSSettings_SIMPLE || mode == v1alpha3.ClientTLSSettings_MUTUAL {
    		if dr.GetTrafficPolicy().GetTls().GetCaCertificates() == "" && !(dr.GetTrafficPolicy().GetTls().GetCredentialName() != "" && dr.WorkloadSelector != nil) {
    			m := msg.NewNoServerCertificateVerificationDestinationLevel(r, drName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testso/testdata/so/cgoso_unix.go

    // license that can be found in the LICENSE file.
    
    //go:build aix || dragonfly || freebsd || linux || netbsd || solaris
    
    package cgosotest
    
    /*
    extern int __thread tlsvar;
    int *getTLS() { return &tlsvar; }
    */
    import "C"
    
    func init() {
    	if v := *C.getTLS(); v != 12345 {
    		println("got", v)
    		panic("BAD TLS value")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:41 UTC 2023
    - 428 bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/virtualservice/util.go

    				RouteRule:        "tcp",
    				ServiceIndex:     i,
    				DestinationIndex: j,
    				Destination:      rd.GetDestination(),
    			})
    		}
    	}
    	for i, r := range vs.GetTls() {
    		for j, rd := range r.GetRoute() {
    			destinations = append(destinations, &AnnotatedDestination{
    				RouteRule:        "tls",
    				ServiceIndex:     i,
    				DestinationIndex: j,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/gateway/secret.go

    				m.Line = line
    			}
    
    			ctx.Report(gvk.Gateway, m)
    			return true
    		}
    
    		for i, srv := range gw.GetServers() {
    			tls := srv.GetTls()
    			if tls == nil {
    				continue
    			}
    
    			cn := tls.GetCredentialName()
    			if cn == "" {
    				continue
    			}
    
    			secret := ctx.Find(gvk.Secret, resource.NewShortOrFullName(gwNs, cn))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 18:29:24 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/grpcgen/cds.go

    	// 3. Once we support gRPC servers, we have no good way to detect if a server is implemented with xds.NewGrpcServer and will actually support our config
    	// For these reasons, support only explicit tls configuration.
    	switch policy.GetTls().GetMode() {
    	case networking.ClientTLSSettings_DISABLE:
    		// nothing to do
    	case networking.ClientTLSSettings_SIMPLE:
    		// TODO support this
    	case networking.ClientTLSSettings_MUTUAL:
    		// TODO support this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top