Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hashRuntimeTLSMatchPredicates (0.18 sec)

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

    				continue
    			}
    			if host.Name(vsHost).Matches(hostname) {
    				svcConfigs = append(svcConfigs, cfg)
    				break
    			}
    		}
    	}
    	return svcConfigs
    }
    
    // hashRuntimeTLSMatchPredicates hashes runtime predicates of a TLS match
    func hashRuntimeTLSMatchPredicates(match *v1alpha3.TLSMatchAttributes) string {
    	return strings.Join(match.SniHosts, ",") + "|" + strings.Join(match.DestinationSubnets, ",")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top