Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for clustered (0.13 sec)

  1. pilot/pkg/model/endpointshards.go

    	return ShardKey{Cluster: instance.Cluster(), Provider: instance.Provider()}
    }
    
    // ShardKey is the key for EndpointShards made of a key with the format "provider/cluster"
    type ShardKey struct {
    	Cluster  cluster.ID
    	Provider provider.ID
    }
    
    func (sk ShardKey) String() string {
    	return string(sk.Provider) + "/" + string(sk.Cluster) // format: %s/%s
    }
    
    // MarshalText implements the TextMarshaler interface (for json key usage)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/analyzers_test.go

    		expected: []message{
    			{msg.VirtualServiceUnreachableRule, "VirtualService duplicate-match"},
    			{msg.VirtualServiceUnreachableRule, "VirtualService foo/sample-foo-cluster01"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService almost-duplicate-match"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService duplicate-match"},
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top