Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 800 for cluster1 (0.16 sec)

  1. pilot/pkg/config/kube/gateway/testdata/deployment/cluster-ip.yaml

            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/default/deployments/default
            - name: ISTIO_META_MESH_ID
              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            image: test/proxyv2:test
            name: istio-proxy
            ports:
            - containerPort: 15021
              name: status-port
              protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

    // in given cluster. Then all ops in cluster are replaced by `tf_device.launch`.
    void BuildLaunchForCluster(const TF::Cluster& c, OpBuilder* builder) {
      // Set insertion point to right after all operations in cluster.
      builder->setInsertionPoint(c.ops.back()->getNextNode());
    
      // Create a stand-alone region to hold all instructions in the cluster.
      Region region;
      region.push_back(new Block);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    						for _, cluster := range ctx.Clusters().ByNetwork()[ctx.Clusters().Default().NetworkName()] {
    							cluster := cluster
    							ctx.NewSubTest(cluster.StableName()).Run(func(ctx framework.TestContext) {
    								retry.UntilSuccessOrFail(ctx, func() error {
    									err := tracing.SendTraffic(ctx, nil, cluster)
    									if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. pkg/test/framework/components/cluster/topology.go

    }
    
    func (c Topology) Primary() Cluster {
    	cluster, ok := c.AllClusters[c.PrimaryClusterName]
    	if !ok || cluster == nil {
    		panic(fmt.Errorf("cannot find %s, the primary cluster for %s", c.PrimaryClusterName, c.Name()))
    	}
    	return cluster
    }
    
    func (c Topology) PrimaryName() string {
    	return c.PrimaryClusterName
    }
    
    func (c Topology) Config() Cluster {
    	cluster, ok := c.AllClusters[c.ConfigClusterName]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. prow/lib.sh

      fi
    
      # https://docs.tilt.dev/choosing_clusters.html#discovering-the-registry
      for cluster in $(kind get clusters); do
        # TODO get context/config from existing variables
        kind export kubeconfig --name="${cluster}"
        for node in $(kind get nodes --name="${cluster}"); do
          kubectl annotate node "${node}" "kind.x-k8s.io/registry=localhost:${KIND_REGISTRY_PORT}" --overwrite;
        done
      done
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo.go

    	adminCluster := adminConfig.Contexts[adminConfig.CurrentContext].Cluster
    	// Copy the cluster from admin.conf to the bootstrap kubeconfig, contains the CA cert and the server URL
    	klog.V(1).Infoln("[bootstrap-token] copying the cluster from admin.conf to the bootstrap kubeconfig")
    	bootstrapConfig := &clientcmdapi.Config{
    		Clusters: map[string]*clientcmdapi.Cluster{
    			"": adminConfig.Clusters[adminCluster],
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 3.9K bytes
    - Viewed (0)
Back to top