Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. istioctl/pkg/workload/testdata/vmconfig-nil-proxy-metadata/cluster.env.golden

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 546 bytes
    - Viewed (0)
  2. 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 (1)
  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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top