Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultDestinationRuleExportTo (0.67 sec)

  1. operator/pkg/util/merge_iop.go

    	DefaultVirtualServiceExportTo  []string                                                  `json:"defaultVirtualServiceExportTo" patchStrategy:"merge"`
    	DefaultDestinationRuleExportTo []string                                                  `json:"defaultDestinationRuleExportTo" patchStrategy:"merge"`
    	LocalityLbSetting              *v1alpha3.LocalityLoadBalancerSetting                     `json:"localityLbSetting" patchStrategy:"merge"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. pkg/config/mesh/mesh.go

    		ProxyInboundListenPort:         15006,
    		ConnectTimeout:                 durationpb.New(10 * time.Second),
    		DefaultServiceExportTo:         []string{"*"},
    		DefaultVirtualServiceExportTo:  []string{"*"},
    		DefaultDestinationRuleExportTo: []string{"*"},
    		// DnsRefreshRate is only used when DNS requests fail (NXDOMAIN or SERVFAIL). For success, the TTL
    		// will be used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    	return res
    }
    
    func (ps *PushContext) initDefaultExportMaps() {
    	ps.exportToDefaults.destinationRule = sets.New[visibility.Instance]()
    	if ps.Mesh.DefaultDestinationRuleExportTo != nil {
    		for _, e := range ps.Mesh.DefaultDestinationRuleExportTo {
    			ps.exportToDefaults.destinationRule.Insert(visibility.Instance(e))
    		}
    	} else {
    		// default to *
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top