Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for serviceCluster (0.58 sec)

  1. pilot/cmd/pilot-agent/config/config.go

    		}
    	}
    
    	if x, ok := proxyConfig.GetClusterName().(*meshconfig.ProxyConfig_ServiceCluster); ok {
    		if x.ServiceCluster == "" {
    			proxyConfig.ClusterName = &meshconfig.ProxyConfig_ServiceCluster{ServiceCluster: serviceCluster}
    		}
    	}
    	// resolve statsd address
    	if proxyConfig.StatsdUdpAddress != "" {
    		addr, err := network.ResolveAddr(proxyConfig.StatsdUdpAddress)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/options/agent_proxy.go

    type ProxyArgs struct {
    	istioagent.Proxy
    
    	StsPort            int
    	TokenManagerPlugin string
    
    	MeshConfigFile string
    
    	// proxy config flags (named identically)
    	ServiceCluster         string
    	ProxyLogLevel          string
    	ProxyComponentLogLevel string
    	Concurrency            int
    	TemplateFile           string
    	OutlierLogPath         string
    
    	PodName      string
    	PodNamespace string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/app/cmd.go

    		"Token provider specific plugin name.")
    	// DEPRECATED. Flags for proxy configuration
    	proxyCmd.PersistentFlags().StringVar(&proxyArgs.ServiceCluster, "serviceCluster", constants.ServiceClusterName, "Service cluster")
    	// Log levels are provided by the library https://github.com/gabime/spdlog, used by Envoy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. pkg/envoy/proxy_test.go

    	"istio.io/istio/pkg/model"
    )
    
    func TestEnvoyArgs(t *testing.T) {
    	proxyConfig := (*model.NodeMetaProxyConfig)(mesh.DefaultProxyConfig())
    	proxyConfig.ClusterName = &meshconfig.ProxyConfig_ServiceCluster{ServiceCluster: "my-cluster"}
    	proxyConfig.Concurrency = &wrapperspb.Int32Value{Value: 8}
    
    	cfg := ProxyConfig{
    		LogLevel:          "trace",
    		ComponentLogLevel: "misc:error",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 11:45:51 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/tracing.go

    ) (*hcm.HttpConnectionManager_Tracing, bool, error) {
    	startChildSpan := false
    	useCustomSampler := false
    	var serviceCluster string
    	var maxTagLength uint32
    	var providerConfig typedConfigGenFn
    	var providerName string
    	if proxy.XdsNode != nil {
    		serviceCluster = proxy.XdsNode.Cluster
    	}
    	switch provider := providerCfg.Provider.(type) {
    	case *meshconfig.MeshConfig_ExtensionProvider_Zipkin:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/tracing_none_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/tracing_opencensusagent_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/auth_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. pkg/bootstrap/testdata/lrs_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/tracing_zipkin_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top