Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 230 for clustered (0.34 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    					}
    				}
    			}
    		})
    	}
    }
    
    func TestProxyK8sHostnameLabel(t *testing.T) {
    	clusterID := cluster.ID("fakeCluster")
    	controller, fx := NewFakeControllerWithOptions(t, FakeControllerOptions{
    		ClusterID: clusterID,
    	})
    
    	pod := generatePod("128.0.0.1", "pod1", "nsa", "foo", "node1", map[string]string{"app": "test-app"}, map[string]string{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/fake.go

    		XDSUpdater:            xdsUpdater,
    		Metrics:               &model.Environment{},
    		MeshNetworksWatcher:   opts.NetworksWatcher,
    		MeshWatcher:           opts.MeshWatcher,
    		ClusterID:             opts.ClusterID,
    		MeshServiceController: meshServiceController,
    		ConfigCluster:         opts.ConfigCluster,
    		SystemNamespace:       opts.SystemNamespace,
    	}
    	c := NewController(opts.Client, options)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. cluster/gce/manifests/cluster-autoscaler.manifest

    {
        "kind": "Pod",
        "apiVersion": "v1",
        "metadata": {
            "name": "cluster-autoscaler",
            "namespace": "kube-system",
            "labels": {
                "tier": "cluster-management",
                "component": "cluster-autoscaler"
            }
        },
        "spec": {
            "securityContext": {
                {{runAsUser}}
                {{runAsGroup}}
                {{supplementalGroups}}
                "seccompProfile": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:04:35 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/endpoint_builder_test.go

    				networkManager: &networkManager{
    					clusterID: c.ctl.cluster,
    					network:   c.ctl.network,
    				},
    				opts: Options{ClusterID: c.ctl.cluster},
    			}
    			eb := cc.NewEndpointBuilderFromMetadata(c.proxy)
    
    			assert.Equal(t, eb.labels, c.expected)
    		})
    	}
    }
    
    type testController struct {
    	locality string
    	cluster  cluster2.ID
    	network  network.ID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/multicluster/service.go

    		// Compare if service has mixed mode like headless and clusterIP
    		if !addedHeadless && (firstService.ClusterIP == corev1.ClusterIPNone) != (service.ClusterIP == corev1.ClusterIPNone) {
    			addedHeadless = true
    			for c := range services {
    				inconsistentClusters.Insert(c.String())
    			}
    			inconsistentReasons.Insert("service has mixed mode like headless and clusterIP")
    		}
    
    		// Compare service types
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. istioctl/pkg/workload/workload.go

    					return fmt.Errorf("failed to automatically determine the --clusterID: %v", err)
    				}
    				if clusterName != "" {
    					clusterID = clusterName
    				}
    			}
    
    			if err = createConfig(kubeClient, wg, ctx.IstioNamespace(), clusterID, ingressIP, internalIP, externalIP, outputDir, cmd.OutOrStderr()); err != nil {
    				return err
    			}
    			fmt.Printf("Configuration generation into directory %s was successful\n", outputDir)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/discovery.go

    	"istio.io/istio/pilot/pkg/networking/grpcgen"
    	"istio.io/istio/pilot/pkg/xds"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/cluster"
    )
    
    func InitGenerators(
    	s *xds.DiscoveryServer,
    	cg core.ConfigGenerator,
    	systemNameSpace string,
    	clusterID cluster.ID,
    	internalDebugMux *http.ServeMux,
    ) {
    	env := s.Env
    	generators := map[string]model.XdsResourceGenerator{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/conversion.go

    		nodeLocal = true
    	}
    
    	if svc.Spec.ClusterIP == corev1.ClusterIPNone { // headless services should not be load balanced
    		resolution = model.Passthrough
    	} else if svc.Spec.ClusterIP != "" {
    		addrs[0] = svc.Spec.ClusterIP
    		if len(svc.Spec.ClusterIPs) > 1 {
    			addrs = svc.Spec.ClusterIPs
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. pilot/pkg/credentials/kube/multicluster.go

    	cc := m.component.ForCluster(clusterID)
    	if cc == nil {
    		return nil, fmt.Errorf("cluster %v is not configured", clusterID)
    	}
    	agg := &AggregateController{}
    	agg.controllers = []*CredentialsController{}
    	agg.authController = *cc
    	if clusterID != m.configCluster {
    		// If the request cluster is not the config cluster, we will append it and use it for auth
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

      FunctionDefLibrary fdef_lib =
          CreateFunctionDefLibWithConstFunction("cluster_0");
      TF_ASSERT_OK(root.graph()->AddFunctionLibrary(fdef_lib));
      Node* call;
      TF_ASSERT_OK(MakeXlaCompiledKernel(root.graph(), "cluster_0", "C", &call));
      call->AddAttr(kXlaHasReferenceVarsAttr, false);
      call->set_requested_device(kXlaDeviceName);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top