Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getTLS (0.11 sec)

  1. istioctl/pkg/precheck/precheck.go

    		verificationImpacted = verificationImpacted || checkVerify(dr.Spec.GetTrafficPolicy().GetTls())
    		sniImpacted = sniImpacted || checkSNI(dr.Spec.GetTrafficPolicy().GetTls())
    		for _, pl := range dr.Spec.GetTrafficPolicy().GetPortLevelSettings() {
    			verificationImpacted = verificationImpacted || checkVerify(pl.GetTls())
    			sniImpacted = sniImpacted || checkSNI(pl.GetTls())
    		}
    		for _, ss := range dr.Spec.Subsets {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    			}
    			sanitizeServerHostNamespace(s, gatewayConfig.Namespace)
    			gatewayNameForServer[s] = gatewayName
    			log.Debugf("MergeGateways: gateway %q processing server %s :%v", gatewayName, s.Name, s.Hosts)
    
    			cn := s.GetTls().GetCredentialName()
    			if cn != "" && proxy.VerifiedIdentity != nil {
    				rn := credentials.ToResourceName(cn)
    				parse, _ := credentials.ParseResourceName(rn, proxy.VerifiedIdentity.Namespace, "", "")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder.go

    	util.AddSubsetToMetadata(subsetCluster.cluster.Metadata, subset.Name)
    	subsetCluster.cluster.Metadata = util.AddALPNOverrideToMetadata(subsetCluster.cluster.Metadata, opts.policy.GetTls().GetMode())
    	return subsetCluster.build()
    }
    
    // applyDestinationRule applies the destination rule if it exists for the Service.
    // It returns the subset clusters if any created as it applies the destination rule.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway.go

    				}
    			}
    		}
    
    		// check all hostname in vHostDedupMap and if is not exist with HttpsRedirect set to true
    		// create VirtualHost to redirect
    		for _, hostname := range server.Hosts {
    			if !server.GetTls().GetHttpsRedirect() {
    				continue
    			}
    			if vHost, exists := vHostDedupMap[host.Name(hostname)]; exists {
    				vHost.RequireTls = route.VirtualHost_ALL
    				continue
    			}
    			newVHost := &route.VirtualHost{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top