Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,514 for cluster1 (0.24 sec)

  1. istioctl/pkg/writer/pilot/testdata/multiXdsStatusSinglePilot.txt

    NAME       CLUSTER      CDS       LDS        EDS        RDS          ECDS         ISTIOD      VERSION
    proxy1     cluster1     STALE     SYNCED     SYNCED     NOT SENT     NOT SENT     istiod1     1.20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 03:42:52 UTC 2024
    - 300 bytes
    - Viewed (0)
  2. istioctl/pkg/writer/pilot/status_test.go

    			input: map[string]*discovery.DiscoveryResponse{
    				"istiod1": xdsResponseInput("istiod1", []clientConfigInput{
    					{
    						proxyID:        "proxy1",
    						clusterID:      "cluster1",
    						version:        "1.20",
    						cdsSyncStatus:  status.ConfigStatus_STALE,
    						ldsSyncStatus:  status.ConfigStatus_SYNCED,
    						rdsSyncStatus:  status.ConfigStatus_NOT_SENT,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. docs/federation/lookup/README.md

    points to the public IP address where each cluster might be accessible, this is unique for each cluster.
    
    NOTE: `mybucket` only exists on one cluster either `cluster1` or `cluster2` this is random and
    is decided by how `domain.com` gets resolved, if there is a round-robin DNS on `domain.com` then
    it is randomized which cluster might provision the bucket.
    
    ### 3. Test your setup
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-2.yaml

    # Same service as cluster1, should not report warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service
      namespace: my-namespace
    spec:
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service with extra port in cluster2, should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: extra-port
      namespace: my-namespace
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. pkg/kube/inject/webhook_test.go

    		{
    			name: "one-kv",
    			in:   "/inject/cluster/cluster1",
    			want: map[string]string{"ISTIO_META_CLUSTER_ID": "cluster1"},
    		},
    		{
    			name: "two-kv",
    			in:   "/inject/cluster/cluster1/net/network1/",
    			want: map[string]string{"ISTIO_META_CLUSTER_ID": "cluster1", "ISTIO_META_NETWORK": "network1"},
    		},
    		{
    			name: "kv-with-slashes",
    			in:   "/inject/cluster/cluster--slash--1/net/network--slash--1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/verify_clustering_pass_test.mlir

       // expected-error@below {{op has outside compilation attribute _xla_outside_compilation which is not allowed after clustering}}
      %0 = "tf.Identity"(%arg0) {_xla_outside_compilation = "cluster1"}: (tensor<4x?x!tf_type.stringref>) -> tensor<4x2x!tf_type.string>
      func.return %0 : tensor<4x2x!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 22:07:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. samples/kind-lb/setupkind.sh

    fi
    
    # Create k8s cluster using the giving release and name
    if [[ -z "${K8SRELEASE}" ]]; then
      cat << EOF | kind create cluster --config -
    ${CONFIG}
    EOF
    else
      cat << EOF | kind create cluster "${K8SRELEASE}" --config -
    ${CONFIG}
    EOF
    fi
    
    # Setup cluster context
    kubectl cluster-info --context "kind-${CLUSTERNAME}"
    
    # Setup metallb using v0.13.11
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. pkg/test/framework/components/opentelemetry/kube.go

    	o := &otel{
    		cluster: ctx.Clusters().GetOrDefault(c.Cluster),
    	}
    	ctx.TrackResource(o)
    
    	istioCfg, err := istio.DefaultConfig(ctx)
    	if err != nil {
    		return nil, err
    	}
    
    	ns := istioCfg.TelemetryNamespace
    	if err := install(ctx, ns); err != nil {
    		return nil, err
    	}
    
    	f := testKube.NewSinglePodFetch(o.cluster, ns, fmt.Sprintf("app=%s", appName))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. pkg/adsc/delta_test.go

    	return deltaHandler(delta)
    }
    
    var testCluster = &cluster.Cluster{
    	Name:                 "test-eds",
    	ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS},
    	EdsClusterConfig: &cluster.Cluster_EdsClusterConfig{
    		EdsConfig: &core.ConfigSource{
    			ConfigSourceSpecifier: &core.ConfigSource_Ads{
    				Ads: &core.AggregatedConfigSource{},
    			},
    		},
    	},
    	LbPolicy: cluster.Cluster_ROUND_ROBIN,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/multicluster_analyzers_test.go

    	return sa, nil
    }
    
    type fakeClientImpl struct {
    	kube.CLIClient
    	clusterID cluster.ID
    }
    
    func (f *fakeClientImpl) ClusterID() cluster.ID {
    	return f.clusterID
    }
    
    func addStore(sa *local.IstiodAnalyzer, clusterName string, yamls []string) error {
    	client := &fakeClientImpl{
    		CLIClient: kube.NewFakeClient(),
    		clusterID: cluster.ID(clusterName),
    	}
    	// Gather test files
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top