Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 377 for cluster0 (0.13 sec)

  1. hack/make-rules/test-cmd.sh

      cat <<EOF > "$config"
    kind: Config
    users:
    - name: controller-manager
      user:
        token: admin-token
    clusters:
    - cluster:
        server: https://127.0.0.1:${SECURE_API_PORT}
        insecure-skip-tls-verify: true
      name: local
    contexts:
    - context:
        cluster: local
        user: controller-manager
      name: local-context
    current-context: local-context
    EOF
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    		s:                      s,
    	}
    	mc.component = multicluster.BuildMultiClusterComponent(controller, func(cluster *multicluster.Cluster) *kubeController {
    		stop := make(chan struct{})
    		client := cluster.Client
    		configCluster := opts.ClusterID == cluster.ID
    
    		options := opts
    		options.ClusterID = cluster.ID
    		if !configCluster {
    			options.SyncTimeout = features.RemoteClusterTimeout
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    	return ShardKey{Cluster: instance.Cluster(), Provider: instance.Provider()}
    }
    
    // ShardKey is the key for EndpointShards made of a key with the format "provider/cluster"
    type ShardKey struct {
    	Cluster  cluster.ID
    	Provider provider.ID
    }
    
    func (sk ShardKey) String() string {
    	return string(sk.Provider) + "/" + string(sk.Cluster) // format: %s/%s
    }
    
    // MarshalText implements the TextMarshaler interface (for json key usage)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    			// Ideally, if the weighted cluster overwrites authority, it has precedence. This mirrors behavior of headers,
    			// because for headers we append the weighted last which allows it to Set and wipe out previous Adds.
    			// However, Envoy behavior is different when we set at both cluster level and route level, and we want
    			// behavior to be consistent with a single cluster and multiple clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/deployment.go

    			"-o", subsetDir,
    		}
    		if ctx.Clusters().IsMulticluster() {
    			// When VMs talk about "cluster", they refer to the cluster they connect to for discovery
    			cmd = append(cmd, "--clusterID", cfg.Cluster.Name())
    		}
    		if cfg.AutoRegisterVM {
    			cmd = append(cmd, "--autoregister")
    		}
    		if !ctx.Environment().(*kube.Environment).Settings().LoadBalancerSupported {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_util.h

    //   that will run on unknown devices (because the unknown XLA backend may not
    //   support every operation supported by CPU).
    // - Let BuildXlaOpsPass successfully infer a compilation device for a cluster
    //   that contains nodes placed on both the CPU and on unknown devices.  In this
    //   case it is the responsibility of the optimization pass that injected the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. releasenotes/notes/release-channels-remote-cluster.yaml

    issue:
    - https://github.com/istio/enhancements/issues/173
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 19:46:57 UTC 2024
    - 297 bytes
    - Viewed (0)
  8. pkg/kube/multicluster/secretcontroller_test.go

    		return clientWithNamespace(), nil
    	}
    
    	tc.component = BuildMultiClusterComponent(tc.controller, func(cluster *Cluster) testHandler {
    		// Filter must immediately work!
    		assert.Equal(t, cluster.Client.ObjectFilter() != nil, true, "cluster "+cluster.ID.String())
    		assert.Equal(t, cluster.Client.ObjectFilter().Filter("allowed"), true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. tools/packaging/common/envoy_bootstrap.json

            "thread": "%t"
          }
    {{- else }}
            "text_format": "%Y-%m-%dT%T.%fZ\t%l\tenvoy %n %g:%#\t%v\tthread=%t"
    {{- end }}
        }
      },
      "node": {
        "id": "{{ .nodeID }}",
        "cluster": "{{ .cluster }}",
        "locality": {
          {{- if .region }}
          "region": "{{ .region }}"
          {{- end }}
          {{- if .zone }}
          {{- if .region }}
          ,
          {{- end }}
          "zone": "{{ .zone }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    	if _, err := os.Stat(caPath); os.IsNotExist(err) {
    		klog.V(1).Infof("[kubelet-start] writing CA certificate at %s", caPath)
    		if err := certutil.WriteCert(caPath, tlsBootstrapCfg.Clusters[cluster].CertificateAuthorityData); err != nil {
    			return errors.Wrap(err, "couldn't save the CA certificate to disk")
    		}
    	}
    
    	bootstrapClient, err := kubeconfigutil.ClientSetFromFile(bootstrapKubeConfigFile)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top