Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,006 for cluster0 (0.14 sec)

  1. tests/integration/create_cluster_gke.sh

    gcloud config set container/use_client_certificate False
    
    # Download the credentials for the cluster.
    gcloud container clusters get-credentials "$CLUSTER_NAME" --project="$PROJECT" --zone="$ZONE"
    
    # Grant the current user admin privileges on the cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 12 16:02:51 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  2. tests/integration/pilot/istioctl_test.go

    		Run(func(t framework.TestContext) {
    			for _, cluster := range t.Clusters().Primaries() {
    				cluster := cluster
    				t.NewSubTest(cluster.StableName()).Run(func(t framework.TestContext) {
    					istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{Cluster: cluster})
    					var output string
    					args := []string{"remote-clusters"}
    					output, _ = istioCtl.InvokeOrFail(t, args)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. cluster/addons/dns-horizontal-autoscaler/README.md

    in Kubernetes clusters. This autoscaler runs as a Deployment. It collects cluster
    status from the APIServer, horizontally scales the number of DNS backends based
    on demand. Autoscaling parameters could be tuned by modifying the `kube-dns-autoscaler`
    ConfigMap in `kube-system` namespace.
    
    Learn more about:
    - Usage: http://kubernetes.io/docs/tasks/administer-cluster/dns-horizontal-autoscaling/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 596 bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/kubeconfig/kubeconfig_test.go

    					"foo": {AuthInfo: "foo", Cluster: "foo"},
    					"bar": {AuthInfo: "bar", Cluster: "bar"},
    				},
    				Clusters: map[string]*clientcmdapi.Cluster{
    					"foo": {Server: "http://foo:8080"},
    					"bar": {Server: "https://bar:16443"},
    				},
    			},
    			expectedClusterName: "foo",
    			expectedCluster: &clientcmdapi.Cluster{
    				Server: "http://foo:8080",
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 06:49:59 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. cluster/addons/dns/nodelocaldns/README.md

    # Nodelocal DNS Cache
    
    Using NodeLocal DNSCache in Kubernetes clusters(https://kubernetes.io/docs/tasks/administer-cluster/nodelocaldns/).
    This addon runs a node-local-dns pod on all cluster nodes. The pod runs CoreDNS as the dns cache. It runs with `hostNetwork:True` and creates a dedicated dummy interface with a link local ip(169.254.20.10/32 by default) to listen for DNS queries. The cache instances connect to clusterDNS in case of cache misses.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3K bytes
    - Viewed (0)
  6. tests/integration/pilot/mcs/common/common.go

    		if err != nil {
    			return err
    		}
    
    		// Make sure the CRD exists in each cluster.
    		for _, c := range t.Clusters() {
    			crdName := fmt.Sprintf("%ss.%s", kind, params.Group)
    			if isCRDInstalled(c, crdName, params.Version) {
    				// It's already installed on this cluster - nothing to do.
    				continue
    			}
    
    			// Add/Update the CRD in this cluster...
    			if t.Settings().NoCleanup {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 17:09:00 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. cni/pkg/install/testdata/kubeconfig-newhost

    apiVersion: v1
    clusters:
    - cluster:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 11 01:19:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/aggregate/controller.go

    	}
    	return out
    }
    
    func nodeClusterID(node *model.Proxy) cluster.ID {
    	if node.Metadata == nil || node.Metadata.ClusterID == "" {
    		return ""
    	}
    	return node.Metadata.ClusterID
    }
    
    // Skip the service registry when there won't be a match
    // because the proxy is in a different cluster.
    func skipSearchingRegistryForProxy(nodeClusterID cluster.ID, r serviceregistry.Instance) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. tests/integration/pilot/revisions/uninstall_test.go

    	}, retry.Delay(checkResourceDelay), retry.Timeout(checkResourceTimeout))
    }
    
    // getRemainingResourcesCluster get specific resources from the cluster
    func getRemainingResourcesCluster(cs cluster.Cluster, gvr schema.GroupVersionResource, ls string) ([]unstructured.Unstructured, []string) {
    	usList, _ := cs.Dynamic().Resource(gvr).List(context.TODO(), metav1.ListOptions{LabelSelector: ls})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/echotest/filters_test.go

    					"a.echo1.svc.cluster.local": {
    						"b.echo1.svc.cluster.local_external.echo1.svc.cluster.local_naked.echo1.svc.cluster.local":  2,
    						"external.echo1.svc.cluster.local_naked.echo1.svc.cluster.local_vm.echo1.svc.cluster.local": 2,
    					},
    					"a.echo2.svc.cluster.local": {
    						"b.echo1.svc.cluster.local_external.echo1.svc.cluster.local_naked.echo1.svc.cluster.local":  2,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top