Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 151 for destinationFile (0.26 sec)

  1. pilot/pkg/networking/util/util_test.go

    		want *core.Metadata
    	}{
    		{
    			"destination-rule",
    			config.Meta{
    				Name:             "svcA",
    				Namespace:        "default",
    				Domain:           "svc.cluster.local",
    				GroupVersionKind: gvk.DestinationRule,
    			},
    			&core.Metadata{
    				FilterMetadata: map[string]*structpb.Struct{
    					IstioMetadataKey: {
    						Fields: map[string]*structpb.Value{
    							"config": {
    								Kind: &structpb.Value_StringValue{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. pkg/config/schema/kubeclient/resources.gen.go

    	case gvr.DaemonSet:
    		return &k8sioapiappsv1.DaemonSet{}
    	case gvr.Deployment:
    		return &k8sioapiappsv1.Deployment{}
    	case gvr.DestinationRule:
    		return &apiistioioapinetworkingv1alpha3.DestinationRule{}
    	case gvr.EndpointSlice:
    		return &k8sioapidiscoveryv1.EndpointSlice{}
    	case gvr.Endpoints:
    		return &k8sioapicorev1.Endpoints{}
    	case gvr.EnvoyFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/grpcgen/grpcecho_test.go

    spec:
      clusterIP: 1.2.3.4
      selector:
        app: echo
      ports:
      - name: grpc
        targetPort: grpc
        port: 7070
    `,
    		ConfigString: `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: echo-dr
      namespace: default
    spec:
      host: echo-app.default.svc.cluster.local
      subsets:
        - name: v1
          labels:
            version: v1
        - name: v2
          labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. pkg/config/schema/gvr/resources.gen.go

    	DaemonSet                      = schema.GroupVersionResource{Group: "apps", Version: "v1", Resource: "daemonsets"}
    	Deployment                     = schema.GroupVersionResource{Group: "apps", Version: "v1", Resource: "deployments"}
    	DestinationRule                = schema.GroupVersionResource{Group: "networking.istio.io", Version: "v1alpha3", Resource: "destinationrules"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 12.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. pkg/test/framework/components/opentelemetry/kube.go

      http:
      - match:
        - port: 55678
        route:
        - destination:
            host: opentelemetry-collector
            port:
              number: 55678
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: opentelemetry-collector
      namespace: istio-system
    spec:
      host: opentelemetry-collector
      trafficPolicy:
        tls:
          mode: DISABLE
    ---`
    
    	extServiceEntry = `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. 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)
  9. pilot/pkg/xds/ads_test.go

    			Meta: config.Meta{
    				GroupVersionKind: gvk.DestinationRule,
    				Name:             fmt.Sprintf("dr%d", i), Namespace: testConfigNamespace,
    			},
    			Spec: &networking.DestinationRule{
    				Host:     host,
    				ExportTo: nil,
    			},
    		}); err != nil {
    			t.Fatal(err)
    		}
    	}
    	removeDestinationRule := func(i int) {
    		s.Store().Delete(gvk.DestinationRule, fmt.Sprintf("dr%d", i), testConfigNamespace, nil)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/xds_cache_test.go

    		}
    		c.Clear(sets.New(model.ConfigKey{Kind: kind.DestinationRule, Name: "a", Namespace: "b"}))
    		if got := c.Get(ep1); got != nil {
    			t.Fatalf("unexpected result, found key when not expected: %v", c.Keys(model.EDSType))
    		}
    		if got := c.Get(ep2); got != any2 {
    			t.Fatalf("unexpected result: %v, want %v", got, any2)
    		}
    		c.Clear(sets.New(model.ConfigKey{Kind: kind.DestinationRule, Name: "b", Namespace: "b"}))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 20:43:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top