Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Defaults (1.65 sec)

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

    	policy := in.Retries
    	if policy == nil {
    		// No VS policy set, use mesh defaults
    		policy = lb.push.Mesh.GetDefaultHttpRetryPolicy()
    	}
    	action := &route.RouteAction{
    		RetryPolicy: retry.ConvertPolicy(policy, false),
    	}
    
    	// Configure timeouts specified by Virtual Service if they are provided, otherwise set it to defaults.
    	action.Timeout = istio_route.Notimeout
    	if in.Timeout != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. pilot/pkg/features/pilot.go

    	// This is a feature flag, can be removed if protobuf proves universally better.
    	KubernetesClientContentType = env.Register("ISTIO_KUBE_CLIENT_CONTENT_TYPE", "protobuf",
    		"The content type to use for Kubernetes clients. Defaults to protobuf. Valid options: [protobuf, json]").Get()
    
    	EnableExternalNameAlias = env.Register("ENABLE_EXTERNAL_NAME_ALIAS", true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_inbound.go

    	if mode == networking.CaptureMode_DEFAULT {
    		// Chain doesn't specify explicit config, so use the proxy defaults
    		return node.GetInterceptionMode() == model.InterceptionNone
    	}
    	// Explicitly configured in the config, ignore proxy defaults
    	return mode == networking.CaptureMode_NONE
    }
    
    // populateListenerFilters determines the appropriate listener filters based on the listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca.go

    // detectAuthEnv will use the JWT token that is mounted in istiod to set the default audience
    // and trust domain for Istiod, if not explicitly defined.
    // K8S will use the same kind of tokens for the pods, and the value in istiod's own token is
    // simplest and safest way to have things match.
    //
    // Note that K8S is not required to use JWT tokens - we will fallback to the defaults
    // or require explicit user option for K8S clusters using opaque tokens.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    	}
    	// When users specify circuit breakers, they need to be set on the receiver end
    	// (server side) as well as client side, so that the server has enough capacity
    	// (not the defaults) to handle the increased traffic volume
    	// TODO: This is not foolproof - if instance is part of multiple services listening on same port,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util.go

    			portTrafficPolicy = p
    			break
    		}
    	}
    	if portTrafficPolicy == nil {
    		return policy, false
    	}
    
    	// Note that port-level settings will override the destination-level settings.
    	// Traffic settings specified at the destination-level will not be inherited when overridden by port-level settings,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_test.go

    			{msg.ReferencedResourceNotFound, "VirtualService default/reviews-bogushost"},
    			{msg.ReferencedResourceNotFound, "VirtualService default/reviews-bookinfo-other"},
    			{msg.ReferencedResourceNotFound, "VirtualService default/reviews-mirror-bogushost"},
    			{msg.ReferencedResourceNotFound, "VirtualService default/reviews-bogusport"},
    			{msg.VirtualServiceDestinationPortSelectorRequired, "VirtualService default/reviews-2port-missing"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/server.go

    	s.initMeshHandlers(configGen.MeshConfigChanged)
    	s.environment.Init()
    	if err := s.environment.InitNetworksManager(s.XDSServer); err != nil {
    		return nil, err
    	}
    
    	// Options based on the current 'defaults' in istio.
    	caOpts := &caOptions{
    		TrustDomain:      s.environment.Mesh().TrustDomain,
    		Namespace:        args.Namespace,
    		ExternalCAType:   ra.CaExternalType(externalCaType),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. pkg/config/constants/constants.go

    	KubernetesGatewayName = "istio-autogenerated-k8s-gateway"
    
    	// DefaultClusterLocalDomain the default service domain suffix for Kubernetes, if not overridden in config.
    	DefaultClusterLocalDomain = "cluster.local"
    
    	// DefaultClusterSetLocalDomain is the default domain suffix for Kubernetes Multi-Cluster Services (MCS)
    	// used for load balancing requests against endpoints across the ClusterSet (i.e. mesh).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. pilot/pkg/model/telemetry_test.go

    			sidecar,
    			nil,
    			newTracingConfig("envoy", reportingDisabled),
    		},
    		{
    			"disable default",
    			[]config.Config{newTelemetry("default", disabled)},
    			sidecar,
    			[]string{"envoy"},
    			newTracingConfig("envoy", reportingDisabled),
    		},
    		{
    			"non existing",
    			[]config.Config{newTelemetry("default", nonExistant)},
    			sidecar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top