Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for clustered (0.39 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. CHANGELOG/CHANGELOG-1.5.md

    - **Cluster Lifecycle**
      - [alpha] Improved UX and usability for the kubeadm binary that makes it easy to get a new cluster running. ([docs](http://kubernetes.io/docs/getting-started-guides/kubeadm/)) ([changelog](https://github.com/kubernetes/kubeadm/blob/master/CHANGELOG.md)) ([kubernetes/features#11](https://github.com/kubernetes/enhancements/issues/11))
    - **Cluster Ops**
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                        resourceFieldRef:
                          resource: limits.cpu
                    - name: ISTIO_META_CLUSTER_ID
                      value: "{{ valueOrDefault .Values.global.multiCluster.clusterName .ClusterID }}"
                    - name: ISTIO_META_NODE_NAME
                      valueFrom:
                        fieldRef:
                          fieldPath: spec.nodeName
                    - name: ISTIO_META_INTERCEPTION_MODE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

        // expected-remark@above {{ID: 2}}
        tf_device.return %2#0, %2#1 : tensor<i32>, tensor<i32>
        // expected-remark@above {{ID: 3}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.4.md

    - **Cluster Federation**
      - Global Multi-cluster HTTP(S) Ingress across GCE and GKE clusters.
      - Expanded support for federated hybrid-cloud resources including ReplicaSets, Secrets, Namespaces and Events.
    - **Security**
      - Increased pod-level security granularity (eg: Container Image Policies, AppArmor and `sysctl` support)
      - Increased cluster-level security granularity (eg: Access Review API)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  10. 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)
Back to top