Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 117 for destinationFile (0.2 sec)

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

    	cfg := proxy.SidecarScope.DestinationRule(model.TrafficDirectionInbound, proxy, instance.Service.Hostname).GetRule()
    	if cfg != nil {
    		destinationRule := CastDestinationRule(cfg)
    		opts.isDrWithSelector = destinationRule.GetWorkloadSelector() != nil
    		if destinationRule.TrafficPolicy != nil {
    			opts.policy, _ = util.GetPortLevelTrafficPolicy(destinationRule.TrafficPolicy, instance.Port.ServicePort)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. pkg/config/schema/kind/resources.gen.go

    	case CustomResourceDefinition:
    		return "CustomResourceDefinition"
    	case DNSName:
    		return "DNSName"
    	case DaemonSet:
    		return "DaemonSet"
    	case Deployment:
    		return "Deployment"
    	case DestinationRule:
    		return "DestinationRule"
    	case EndpointSlice:
    		return "EndpointSlice"
    	case Endpoints:
    		return "Endpoints"
    	case EnvoyFilter:
    		return "EnvoyFilter"
    	case GRPCRoute:
    		return "GRPCRoute"
    	case Gateway:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe_test.go

    										},
    										Weight: 50,
    									},
    								},
    							},
    						},
    					},
    				},
    				&v1alpha3.DestinationRule{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:      "productpage",
    						Namespace: "default",
    					},
    					Spec: v1alpha32.DestinationRule{
    						Host: "productpage",
    						Subsets: []*v1alpha32.Subset{
    							{
    								Name:   "v1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/ep_filters_test.go

    					},
    				},
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.DestinationRule,
    						Name:             "mtls-on",
    						Namespace:        "ns",
    					},
    					Spec: &networking.DestinationRule{
    						Host: "example.ns.svc.cluster.local",
    						TrafficPolicy: &networking.TrafficPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/tunneling/destination-rule.tmpl.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: tunnel-outbound-traffic-to-external-svc-via-external-forward-proxy
    spec:
      host: external-forward-proxy.{{ .externalNamespace }}.svc.cluster.local
      subsets:
      - name: external-svc-tcp
        trafficPolicy:
          tunnel:
            targetHost: external.{{ .externalNamespace }}
            targetPort: {{ .externalSvcTcpPort }}
      - name: external-svc-tls
        trafficPolicy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 20 19:37:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. pilot/pkg/model/destination_rule.go

    func (ps *PushContext) mergeDestinationRule(p *consolidatedDestRules, destRuleConfig config.Config, exportToSet sets.Set[visibility.Instance]) {
    	rule := destRuleConfig.Spec.(*networking.DestinationRule)
    	resolvedHost := host.Name(rule.Host)
    
    	var destRules map[host.Name][]*ConsolidatedDestRule
    
    	if resolvedHost.IsWildCarded() {
    		destRules = p.wildcardDestRules
    	} else {
    		destRules = p.specificDestRules
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. pkg/config/schema/kubetypes/resources.gen.go

    		return gvk.DaemonSet, true
    	case *k8sioapiappsv1.Deployment:
    		return gvk.Deployment, true
    	case *istioioapinetworkingv1alpha3.DestinationRule:
    		return gvk.DestinationRule, true
    	case *apiistioioapinetworkingv1alpha3.DestinationRule:
    		return gvk.DestinationRule, true
    	case *k8sioapidiscoveryv1.EndpointSlice:
    		return gvk.EndpointSlice, true
    	case *k8sioapicorev1.Endpoints:
    		return gvk.Endpoints, true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pkg/config/schema/collections/collections.agent.gen.go

    	}.MustBuild()
    
    	DestinationRule = resource.Builder{
    		Identifier: "DestinationRule",
    		Group:      "networking.istio.io",
    		Kind:       "DestinationRule",
    		Plural:     "destinationrules",
    		Version:    "v1alpha3",
    		VersionAliases: []string{
    			"v1beta1",
    			"v1",
    		},
    		Proto: "istio.networking.v1alpha3.DestinationRule", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder_test.go

    		clusterMode            ClusterMode
    		service                *model.Service
    		port                   *model.Port
    		proxyView              model.ProxyView
    		destRule               *networking.DestinationRule
    		meshConfig             *meshconfig.MeshConfig
    		expectedSubsetClusters []*cluster.Cluster
    	}{
    		// TODO(ramaraochavali): Add more tests to cover additional conditions.
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_test.go

    		},
    		{
    			// Set DestinationRule override for tcp_keepalive.
    			"destination rule",
    			DestinationRule,
    			&core.TcpKeepalive{KeepaliveTime: &wrappers.UInt32Value{Value: uint32(DestinationRuleTCPKeepaliveSeconds)}},
    		},
    		{
    			// Set DestinationRule override for tcp_keepalive with empty value.
    			"destination rule default",
    			DestinationRuleForOsDefault,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top