Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for cluster_1 (0.16 sec)

  1. pilot/pkg/networking/core/cluster.go

    func (p clusterPatcher) conditionallyAppend(l []*cluster.Cluster, hosts []host.Name, clusters ...*cluster.Cluster) []*cluster.Cluster {
    	if !p.hasPatches() {
    		return append(l, clusters...)
    	}
    	for _, c := range clusters {
    		if patched := p.doPatch(hosts, c); patched != nil {
    			l = append(l, patched)
    		}
    	}
    	return l
    }
    
    func (p clusterPatcher) insertedClusters() []*cluster.Cluster {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.proto

      // For k8s resources, it is recommended to use the more readable format:
      //
      // cluster/group/kind/namespace/name/section-name
      //
      // As an example, a ServiceEntry with two WorkloadEntries inlined could become
      // two Workloads with the following UIDs:
      // - cluster1/networking.istio.io/v1alpha3/ServiceEntry/default/external-svc/endpoint1
      // - cluster1/networking.istio.io/v1alpha3/ServiceEntry/default/external-svc/endpoint2
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/ztunnel/configdump/api.go

    	WorkloadType          string            `json:"workloadType"`
    	CanonicalName         string            `json:"canonicalName"`
    	CanonicalRevision     string            `json:"canonicalRevision"`
    	ClusterID             string            `json:"clusterId"`
    	TrustDomain           string            `json:"trustDomain,omitempty"`
    	Locality              Locality          `json:"locality,omitempty"`
    	Node                  string            `json:"node"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    			Uid:                   a.generateWorkloadEntryUID(wle.Namespace, wle.Name),
    			Name:                  wle.Name,
    			Namespace:             wle.Namespace,
    			Network:               network,
    			ClusterId:             string(a.ClusterID),
    			ServiceAccount:        wle.Spec.ServiceAccount,
    			Services:              constructServicesFromWorkloadEntry(&wle.Spec, services),
    			AuthorizationPolicies: policies,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    	}
    	return jwtAuthn, nil
    }
    
    func getClusterID(args *PilotArgs) cluster.ID {
    	clusterID := args.RegistryOptions.KubeOptions.ClusterID
    	if clusterID == "" {
    		if hasKubeRegistry(args.RegistryOptions.Registries) {
    			clusterID = cluster.ID(provider.Kubernetes)
    		}
    	}
    	return clusterID
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    				externalTrafficFilterVerdict = "drop"
    				serviceNoLocalEndpointsTotalExternal++
    			}
    		}
    
    		// Capture the clusterIP.
    		tx.Add(&knftables.Element{
    			Set: clusterIPsSet,
    			Key: []string{svcInfo.ClusterIP().String()},
    		})
    		if hasInternalEndpoints {
    			tx.Add(&knftables.Element{
    				Map: serviceIPsMap,
    				Key: []string{
    					svcInfo.ClusterIP().String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. pkg/security/security.go

    	ProvCert string
    
    	// ClusterID is the cluster where the agent resides.
    	// Normally initialized from ISTIO_META_CLUSTER_ID - after a tortuous journey it
    	// makes its way into the ClusterID metadata of Citadel gRPC request to create the cert.
    	// Didn't find much doc - but I suspect used for 'central cluster' use cases - so should
    	// match the cluster name set in the MC setup.
    	ClusterID string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    	Status                WorkloadStatus `protobuf:"varint,17,opt,name=status,proto3,enum=istio.workload.WorkloadStatus" json:"status,omitempty"`
    	// The cluster ID that the workload instance belongs to
    	ClusterId string `protobuf:"bytes,18,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
    	// The Locality defines information about where a workload is geographically deployed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. pilot/test/xds/fake.go

    	DefaultClusterName cluster.ID
    	// If provided, the minor version will be overridden for calls to GetKubernetesVersion to 1.minor
    	KubernetesVersion string
    	// If provided, a service registry with the name of each map key will be created with the given objects.
    	KubernetesObjectsByCluster map[cluster.ID][]runtime.Object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. pilot/pkg/features/pilot.go

    			"in the cluster metadata for those endpoints.").Get()
    
    	LocalClusterSecretWatcher = env.Register("LOCAL_CLUSTER_SECRET_WATCHER", false,
    		"If enabled, the cluster secret watcher will watch the namespace of the external cluster instead of config cluster").Get()
    
    	InformerWatchNamespace = env.Register("ISTIO_WATCH_NAMESPACE", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top