Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for clustered (0.19 sec)

  1. pilot/pkg/networking/core/cluster_builder_test.go

    				},
    			},
    			expectedSubsetClusters: []*cluster.Cluster{
    				{
    					Name:                 "outbound|8080|foobar|foo.default.svc.cluster.local",
    					ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS},
    					EdsClusterConfig: &cluster.Cluster_EdsClusterConfig{
    						ServiceName: "outbound|8080|foobar|foo.default.svc.cluster.local",
    					},
    					CircuitBreakers: &cluster.CircuitBreakers{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    				Configs:   cfgs,
    			})
    			clusters := cg.Clusters(cg.SetupProxy(nil))
    			xdstest.ValidateClusters(t, clusters)
    			if c.filter != nil {
    				clusters = xdstest.FilterClusters(clusters, c.filter)
    			}
    			g.Expect(len(clusters)).ShouldNot(Equal(0))
    
    			for _, cluster := range clusters {
    				g.Expect(cluster.CircuitBreakers).NotTo(BeNil())
    				g.Expect(cluster.CircuitBreakers.Thresholds[0]).To(Equal(c.expected))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    		},
    		{
    			"tracing with a nil custom tag",
    			&telemetry.Telemetry{
    				Tracing: []*telemetry.Tracing{{
    					CustomTags: map[string]*telemetry.Tracing_CustomTag{
    						"clusterID": nil,
    					},
    				}},
    			},
    			"tag 'clusterID' may not have a nil value", "",
    		},
    		{
    			"bad metrics operation",
    			&telemetry.Telemetry{
    				Metrics: []*telemetry.Metrics{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    //
    // STS accounts are replicated, but only if the session token is verifiable
    // using the local cluster's root credential.
    func (c *SiteReplicationSys) IAMChangeHook(ctx context.Context, item madmin.SRIAMItem) error {
    	// The IAM item has already been applied to the local cluster at this
    	// point, and only needs to be updated on all remote peer clusters.
    
    	c.RLock()
    	defer c.RUnlock()
    	if !c.enabled {
    		return nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    	if publicKey != nil {
    		w.WriteHeader(200)
    		stream := estream.NewWriter(w)
    		defer stream.Close()
    
    		clusterKey, err := bytesToPublicKey(getSubnetAdminPublicKey())
    		if err != nil {
    			bugLogIf(ctx, stream.AddError(err.Error()))
    			return
    		}
    		err = stream.AddKeyEncrypted(clusterKey)
    		if err != nil {
    			bugLogIf(ctx, stream.AddError(err.Error()))
    			return
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

    }
    
    # Writes the cluster location into a temporary file.
    # Assumed vars
    #   ZONE
    function write-cluster-location {
      cat >"${KUBE_TEMP}/cluster-location.txt" << EOF
    ${ZONE}
    EOF
    }
    
    # Writes the cluster name into a temporary file.
    # Assumed vars
    #   CLUSTER_NAME
    function write-cluster-name {
      cat >"${KUBE_TEMP}/cluster-name.txt" << EOF
    ${CLUSTER_NAME}
    EOF
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. samples/addons/grafana.yaml

    name\":\"datasource\",\"options\":[],\"query\":\"prometheus\",\"queryValue\":\"\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"type\":\"datasource\"},{\"current\":{\"selected\":false,\"text\":\"details.default.svc.cluster.local\",\"value\":\"details.default.svc.cluster.local\"},\"datasource\":{\"type\":\"prometheus\",\"uid\":\"${datasource}\"},\"definition\":\"\",\"hide\":0,\"includeAll\":false,\"label\":\"Service\",\"multi\":false,\"name\":\"service\",\"options\":[],\"query\":\"query_re...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top