Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 351 for clustered (0.12 sec)

  1. 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)
  2. istioctl/pkg/workload/testdata/vmconfig/ipv4/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
    - 655 bytes
    - Viewed (0)
  3. istioctl/pkg/workload/testdata/vmconfig/ipv6/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
    - 657 bytes
    - Viewed (0)
  4. 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)
  5. cluster/validate-cluster.sh

    # Validates that the cluster is healthy.
    # Error codes are:
    # 0 - success
    # 1 - fatal (cluster is unlikely to work)
    # 2 - non-fatal (encountered some errors, but cluster should be working correctly)
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    if [ -f "${KUBE_ROOT}/cluster/env.sh" ]; then
      source "${KUBE_ROOT}/cluster/env.sh"
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top