Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HasAutoPassthroughGateways (0.23 sec)

  1. pilot/pkg/xds/cds.go

    				checkGateway = true
    			}
    		}
    
    		if _, f := skippedCdsConfigs[config.Kind]; !f {
    			return true
    		}
    	}
    	if checkGateway {
    		autoPassthroughModeChanged := proxy.MergedGateway.HasAutoPassthroughGateways() != proxy.PrevMergedGateway.HasAutoPassthroughGateway()
    		autoPassthroughHostsChanged := !proxy.MergedGateway.GetAutoPassthrughGatewaySNIHosts().Equals(proxy.PrevMergedGateway.GetAutoPassthroughSNIHosts())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    	// included. This ensures we don't give permission to unexpected secrets, such as the citadel root key/cert.
    	VerifiedCertificateReferences sets.String
    }
    
    func (g *MergedGateway) HasAutoPassthroughGateways() bool {
    	if g != nil {
    		return g.ContainsAutoPassthroughGateways
    	}
    	return false
    }
    
    // PrevMergedGateway describes previous state of the gateway.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top