Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for destinationFile (0.19 sec)

  1. pilot/pkg/config/kube/crdclient/types.gen.go

    	case gvk.DestinationRule:
    		oldRes := &apiistioioapinetworkingv1alpha3.DestinationRule{
    			ObjectMeta: origMeta,
    			Spec:       *(orig.Spec.(*istioioapinetworkingv1alpha3.DestinationRule)),
    		}
    		modRes := &apiistioioapinetworkingv1alpha3.DestinationRule{
    			ObjectMeta: modMeta,
    			Spec:       *(mod.Spec.(*istioioapinetworkingv1alpha3.DestinationRule)),
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    		},
    	})
    	_, _ = configStore.Create(config.Config{
    		Meta: config.Meta{
    			Name:             "rule1",
    			Namespace:        "test1",
    			GroupVersionKind: gvk.DestinationRule,
    		},
    		Spec: &networking.DestinationRule{
    			ExportTo: []string{".", "ns1"},
    		},
    	})
    	_, _ = configStore.Create(config.Config{
    		Meta: config.Meta{
    			Name:             "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    	if push == nil {
    		return nil, nil
    	}
    	mergedDR := node.SidecarScope.DestinationRule(model.TrafficDirectionOutbound, node, svc.Hostname)
    	destinationRule := mergedDR.GetRule()
    	if destinationRule == nil {
    		return nil, nil
    	}
    	rule := destinationRule.Spec.(*networking.DestinationRule)
    	consistentHash := rule.GetTrafficPolicy().GetLoadBalancer().GetConsistentHash()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_test.go

    			Services: exampleService,
    			Configs: []config.Config{
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.DestinationRule,
    						Name:             "acme",
    						Namespace:        "istio-system",
    					},
    					Spec: &networking.DestinationRule{
    						Host: "*.example.org",
    						TrafficPolicy: &networking.TrafficPolicy{
    							LoadBalancer: &networking.LoadBalancerSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    func (ps *PushContext) initDefaultExportMaps() {
    	ps.exportToDefaults.destinationRule = sets.New[visibility.Instance]()
    	if ps.Mesh.DefaultDestinationRuleExportTo != nil {
    		for _, e := range ps.Mesh.DefaultDestinationRuleExportTo {
    			ps.exportToDefaults.destinationRule.Insert(visibility.Instance(e))
    		}
    	} else {
    		// default to *
    		ps.exportToDefaults.destinationRule.Insert(visibility.Public)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    		if subsetSelector.Matches(podLabels) {
    			return true
    		}
    	}
    	return false
    }
    
    func printDestinationRule(writer io.Writer, initPrintNum int,
    	dr *clientnetworking.DestinationRule, podsLabels []klabels.Set,
    ) {
    	fmt.Fprintf(writer, "%sDestinationRule: %s for %q\n",
    		printSpaces(initPrintNum+printLevel0), kname(dr.ObjectMeta), dr.Spec.Host)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar_test.go

    						},
    					},
    				},
    			},
    		},
    	}
    	destinationRule1 = config.Config{
    		Meta: config.Meta{
    			Name:      "drRule1",
    			Namespace: "mynamespace",
    		},
    		Spec: &networking.DestinationRule{
    			Host: "httpbin.org",
    			WorkloadSelector: &v1beta1.WorkloadSelector{
    				MatchLabels: map[string]string{"app": "app1"},
    			},
    			TrafficPolicy: &networking.TrafficPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_tls_test.go

    				CredentialName: "fake-cred",
    			},
    			result: expectedResult{
    				nil,
    				nil,
    			},
    		},
    		{
    			name: "tls mode SIMPLE, CredentialName is set with proxy type Sidecar and destinationRule has workload Selector",
    			opts: &buildClusterOpts{
    				mutable:          newTestCluster(),
    				isDrWithSelector: true,
    			},
    			tls: &networking.ClientTLSSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  9. tests/integration/ambient/baseline_test.go

    spec:
      hosts:
      - "{{.Destination}}"
      http:
      - route:
        - destination:
            host: "{{.Destination}}"
            subset: v1
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: route
      namespace:
    spec:
      host: "{{.Destination}}"
      subsets:
      - labels:
          version: v1
        name: v1
      - labels:
          version: v2
        name: v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	cfg := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind:  gvk.DestinationRule,
    			Name:              "fakeDestinationRule",
    			Namespace:         "default",
    			Domain:            "cluster.local",
    			CreationTimestamp: GlobalTime,
    		},
    		Spec: &networking.DestinationRule{
    			Host: "fakehost",
    		},
    	}
    	_, err := store.Create(cfg)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top