Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CLUSTER_ID (0.19 sec)

  1. pilot/pkg/features/pilot.go

    			" using Istio build in CA. Other values will not not generate TLS certs, but still "+
    			" distribute ./etc/certs/root-cert.pem. Only used if custom certificates are not mounted.").Get()
    
    	ClusterName = env.Register("CLUSTER_ID", constants.DefaultClusterName,
    		"Defines the cluster and service registry that this Istiod instance belongs to").Get()
    
    	ExternalIstiod = env.Register("EXTERNAL_ISTIOD", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.proto

      repeated string authorization_policies = 16;
    
      WorkloadStatus status = 17;
    
      // The cluster ID that the workload instance belongs to
      string cluster_id = 18;
    
      // The Locality defines information about where a workload is geographically deployed
      Locality locality = 24;
    
      // Reservations for deleted fields.
      reserved 15;
    }
    
    message Locality {
    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. pilot/pkg/serviceregistry/aggregate/controller.go

    	nodeClusterID := nodeClusterID(node)
    	for _, r := range c.GetRegistries() {
    		if skipSearchingRegistryForProxy(nodeClusterID, r) {
    			log.Debugf("GetProxyServiceTargets(): not searching registry %v: proxy %v CLUSTER_ID is %v",
    				r.Cluster(), node.ID, nodeClusterID)
    			continue
    		}
    
    		instances := r.GetProxyServiceTargets(node)
    		if len(instances) > 0 {
    			out = append(out, instances...)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/tracing.go

    			},
    		},
    		{
    			Tag: "istio.namespace",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: namespace,
    				},
    			},
    		},
    		{
    			Tag: "istio.cluster_id",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: clusterID,
    				},
    			},
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top