Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,514 for cluster1 (0.23 sec)

  1. istioctl/pkg/util/configdump/cluster.go

    	for i := range dac {
    		dac[i].Cluster.TypeUrl = v3.ClusterType
    	}
    	sort.Slice(dac, func(i, j int) bool {
    		cluster := &cluster.Cluster{}
    		err = dac[i].Cluster.UnmarshalTo(cluster)
    		if err != nil {
    			return false
    		}
    		name := cluster.Name
    		err = dac[j].Cluster.UnmarshalTo(cluster)
    		if err != nil {
    			return false
    		}
    		return name < cluster.Name
    	})
    	if stripVersions {
    		for i := range dac {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/cluster/kube/cluster.go

    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/echo"
    )
    
    var _ echo.Cluster = &Cluster{}
    
    // Cluster for a Kubernetes cluster. Provides access via a kube.Client.
    type Cluster struct {
    	// filename is the path to the kubeconfig file for this cluster.
    	filename string
    
    	// vmSupport indicates the cluster is being used for fake VMs
    	vmSupport bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 22:54:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/clusters/clusters.go

    	if c.clusters == nil {
    		return fmt.Errorf("config writer has not been primed")
    	}
    
    	w := new(tabwriter.Writer).Init(c.Stdout, 0, 8, 5, ' ', 0)
    
    	clusterEndpoint := make([]EndpointCluster, 0)
    	for _, cluster := range c.clusters.ClusterStatuses {
    		for _, host := range cluster.HostStatuses {
    			if filter.Verify(host, cluster.Name) {
    				addr := retrieveEndpointAddress(host)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  4. pkg/kube/multicluster/cluster.go

    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/kclient"
    	filter "istio.io/istio/pkg/kube/namespace"
    	"istio.io/istio/pkg/log"
    )
    
    // Cluster defines cluster struct
    type Cluster struct {
    	// ID of the cluster.
    	ID cluster.ID
    	// Client for accessing the cluster.
    	Client kube.Client
    
    	kubeConfigSha [sha256.Size]byte
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/compare/cluster.go

    	}
    	diff := difflib.UnifiedDiff{
    		FromFile: "Istiod Clusters",
    		A:        difflib.SplitLines(istiodBytes.String()),
    		ToFile:   "Envoy Clusters",
    		B:        difflib.SplitLines(envoyBytes.String()),
    		Context:  c.context,
    	}
    	text, err := difflib.GetUnifiedDiffString(diff)
    	if err != nil {
    		return err
    	}
    	if text != "" {
    		fmt.Fprintln(c.w, "Clusters Don't Match")
    		fmt.Fprintln(c.w, text)
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/cluster/cluster.go

    		out.Pod[PodKey(p.Namespace, p.Name)] = &pods.Items[i]
    	}
    
    	return out, nil
    }
    
    // Resources defines a tree of cluster resource names.
    type Resources struct {
    	// Root is the first level in the cluster resource hierarchy.
    	// Each level in the hierarchy is a map[string]interface{} to the next level.
    	// The levels are: namespaces/deployments/pods/containers.
    	Root map[string]any
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. istioctl/pkg/multicluster/cluster.go

    import (
    	"context"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/client-go/kubernetes"
    )
    
    // Use UUID of kube-system Namespace as unique identifier for cluster.
    // (see https://docs.google.com/document/d/1F__vEKeI41P7PPUCMM9PVPYY34pyrvQI5rbTJVnS5c4)
    func clusterUID(client kubernetes.Interface) (types.UID, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 02 03:11:58 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. releasenotes/notes/mcs-cluster-local.yaml

    releaseNotes:
      - |
        **Added** experimental support for the `cluster.local` host behavior as defined by
        the Kubernetes Multi-Cluster Services (MCS) spec. This feature is off by default,
        but can be enabled by setting the following flags in Istio:
        `ENABLE_MCS_CLUSTER_LOCAL`, `ENABLE_MCS_HOST` and `ENABLE_MCS_SERVICE_DISCOVERY`.
        When enabled, requests to the `cluster.local` host will be routed to only those
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 08 18:52:07 UTC 2021
    - 573 bytes
    - Viewed (0)
  9. releasenotes/notes/cluster-specific-generate.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 26 22:43:18 UTC 2022
    - 282 bytes
    - Viewed (0)
  10. docs/metrics/prometheus/grafana/replication/grafana-replication-cluster.png

    grafana-replication-cluster.png...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 443.8K bytes
    - Viewed (0)
Back to top