Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 225 for destinationFile (0.52 sec)

  1. 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)
  2. tests/testdata/config/destination-rule-ssl.yaml

    # Fails if a service with the name exists: trusted_ca required !
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: ssl-simple
      namespace: testns
    spec:
      host: ssl1.webinf.info
      trafficPolicy:
        loadBalancer:
          simple: LEAST_CONN
        tls:
          mode: SIMPLE
    ---
    # This will not work: myCA not found, results in rejecting all clusters if the
    # service exists.
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 598 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tests/testdata/config/destination-rule-all.yaml

    # Attempt to use all possible fields in DestinationRule
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: destall
      namespace: testns
    spec:
       hosts:
       - destall.default.svc.cluster.local
       ports:
       - number: 81
         name: http
         protocol: HTTP
       resolution: STATIC
       endpoints:
        - address: 127.0.0.2
          ports:
            http: 7072
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 26 15:06:45 UTC 2020
    - 1.3K 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