Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for destinationFile (0.25 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. 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)
  4. 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)
  5. pkg/config/schema/metadata.yaml

        statusProtoPackage: "istio.io/api/meta/v1alpha1"
    
      - kind: DestinationRule
        plural: "destinationrules"
        group: "networking.istio.io"
        version: "v1alpha3"
        versionAliases:
          - "v1beta1"
          - "v1"
        proto: "istio.networking.v1alpha3.DestinationRule"
        protoPackage: "istio.io/api/networking/v1alpha3"
        statusProto: "istio.meta.v1alpha1.IstioStatus"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway.go

    			if len(push.Mesh.OutboundClusterStatName) != 0 {
    				statPrefix = telemetry.BuildStatPrefix(push.Mesh.OutboundClusterStatName, string(service.Hostname), "", port, 0, &service.Attributes)
    			}
    			destinationRule := CastDestinationRule(proxy.SidecarScope.DestinationRule(
    				model.TrafficDirectionOutbound, proxy, service.Hostname).GetRule())
    
    			// First, we build the standard cluster. We match on the SNI matching the cluster name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_traffic_policy.go

    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/log"
    )
    
    // applyTrafficPolicy applies the trafficPolicy defined within destinationRule,
    // which can be called for both outbound and inbound cluster, but only connection pool will be applied to inbound cluster.
    func (cb *ClusterBuilder) applyTrafficPolicy(opts buildClusterOpts) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. pilot/pkg/networking/grpcgen/grpcgen_test.go

    		},
    	})
    	if mtls {
    		// Client side.
    		_, _ = store.Create(config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.DestinationRule,
    				Name:             svcname,
    				Namespace:        "test",
    			},
    			Spec: &networking.DestinationRule{
    				Host: svcname + ".test.svc.cluster.local",
    				TrafficPolicy: &networking.TrafficPolicy{Tls: &networking.ClientTLSSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. istioctl/pkg/analyze/analyze.go

    		"Suppress reporting a message code on a specific resource. Values are supplied in the form "+
    			`<code>=<resource> (e.g. '--suppress "IST0102=DestinationRule primary-dr.default"'). Can be repeated. `+
    			`You can include the wildcard character '*' to support a partial match (e.g. '--suppress "IST0102=DestinationRule *.default" ).`)
    	analysisCmd.PersistentFlags().DurationVar(&analysisTimeout, "timeout", 30*time.Second,
    		"The duration to wait before failing")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_tls.go

    	}
    	// Hack to avoid egress sds cluster config generation for sidecar when
    	// CredentialName is set in DestinationRule without a workloadSelector.
    	// We do not want to support CredentialName setting in non workloadSelector based DestinationRules, because
    	// that would result in the CredentialName being supplied to all the sidecars which the DestinationRule is scoped to,
    	// resulting in delayed startup of sidecars who do not have access to the credentials.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top