Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 153 for destinationFile (0.38 sec)

  1. 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)
  2. 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)
  3. pkg/config/analysis/analyzers/virtualservice/destinationrules.go

    	}
    
    	return false
    }
    
    func initDestHostsAndSubsets(ctx analysis.Context) map[hostAndSubset]bool {
    	hostsAndSubsets := make(map[hostAndSubset]bool)
    	ctx.ForEach(gvk.DestinationRule, func(r *resource.Instance) bool {
    		dr := r.Message.(*v1alpha3.DestinationRule)
    		drNamespace := r.Metadata.FullName.Namespace
    
    		for _, ss := range dr.GetSubsets() {
    			hs := hostAndSubset{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/mtls_checker.go

    type mtlsChecker struct {
    	push            *model.PushContext
    	svcPort         int
    	destinationRule *networkingapi.ClientTLSSettings_TLSmode
    }
    
    func newMtlsChecker(push *model.PushContext, svcPort int, dr *config.Config, subset string) *mtlsChecker {
    	return &mtlsChecker{
    		push:            push,
    		svcPort:         svcPort,
    		destinationRule: tlsModeForDestinationRule(dr, subset, svcPort),
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top