Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for ClusterID (0.55 sec)

  1. pilot/pkg/config/kube/gateway/context.go

    			if len(instances) > 0 {
    				foundInternal.Insert(fmt.Sprintf("%s:%d", g, port))
    				foundInternalIP.InsertAll(svc.GetAddresses(&model.Proxy{Metadata: &model.NodeMetadata{ClusterID: gc.cluster}})...)
    				if svc.Attributes.ClusterExternalAddresses.Len() > 0 {
    					// Fetch external IPs from all clusters
    					svc.Attributes.ClusterExternalAddresses.ForEach(func(c cluster.ID, externalIPs []string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pkg/dns/server/name_table.go

    					}
    					// TODO(stevenctl): headless across-networks https://github.com/istio/istio/issues/38327
    					sameNetwork := cfg.Node.InNetwork(instance.Network)
    					sameCluster := cfg.Node.InCluster(instance.Locality.ClusterID)
    					// For all k8s headless services, populate the dns table with the endpoint IPs as k8s does.
    					// And for each individual pod, populate the dns table with the endpoint IP with a manufactured host name.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy_delta_test.go

    		t.Fatalf("Expected to get listener response but got %v", res)
    	}
    }
    
    func TestDeltaECDSWasmConversion(t *testing.T) {
    	node := model.NodeMetadata{
    		Namespace:   "default",
    		InstanceIPs: []string{"1.1.1.1"},
    		ClusterID:   constants.DefaultClusterName,
    	}
    	proxy := setupXdsProxy(t)
    	// Reset wasm cache to a fake ACK cache.
    	proxy.wasmCache.Cleanup()
    	proxy.wasmCache = &fakeAckCache{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. pkg/config/analysis/README.md

                c.Report(gvk.VirtualService, msg)
            }
        }
    }
    ```
    
    If you are writing a multi-cluster analyzer, you can obtain the cluster name from the resource metadata:
    
    ```go
    clusterID := r.Origin.ClusterName()
    ```
    
    ### 2. Add the Analyzer to All()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top