Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 83 for destinationFile (0.97 sec)

  1. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    	env.SetPushContext(pushContext)
    	pushContext.SetDestinationRulesForTesting([]config.Config{
    		{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.DestinationRule,
    				Name:             "acme",
    			},
    			Spec: &networking.DestinationRule{
    				Host: "test.example.org",
    				TrafficPolicy: &networking.TrafficPolicy{
    					OutlierDetection: &networking.OutlierDetection{},
    				},
    			},
    		},
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  2. tests/integration/pilot/label_test.go

    spec:
      hosts:
      - {{.Destination}}
      http:
      - route:
        - destination:
            host: {{.Destination}}
            subset: my-subset
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: {{.Destination}}
    spec:
      host: {{.Destination}}
      subsets:
      - name: my-subset
        labels:
          subset: my-subset`
    			t.ConfigIstio().Eval(apps.Namespace.Name(), map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. 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)
  4. tests/integration/security/ecc_signature_algorithm/mtls_strict_test.go

    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	"istio.io/istio/tests/integration/security/util/cert"
    )
    
    const (
    	DestinationRuleConfigIstioMutual = `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: server
      namespace: {{.AppNamespace}}
    spec:
      host: "server.{{.AppNamespace}}.svc.cluster.local"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    `
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. tests/integration/security/file_mounted_certs/p2p_mtls_test.go

    				},
    			}
    
    			client[0].CallOrFail(t, opts)
    		})
    }
    
    const (
    	DestinationRuleConfigMutual = `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: server
      namespace: {{.AppNamespace}}
    spec:
      host: "server.{{.AppNamespace}}.svc.cluster.local"
      trafficPolicy:
        tls:
          mode: MUTUAL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.gen.go

    	// Description: No caCertificates are set in DestinationRule, this results in no verification of presented server certificate.
    	NoServerCertificateVerificationDestinationLevel = diag.NewMessageType(diag.Warning, "IST0128", "DestinationRule %s in namespace %s has TLS mode set to %s but no caCertificates are set to validate server identity for host: %s")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  7. pilot/pkg/xds/proxy_dependencies_test.go

    			model.ConfigKey{Kind: kind.DestinationRule, Name: drName, Namespace: nsName},
    			model.ConfigKey{Kind: kind.ServiceEntry, Name: svcName + invalidNameSuffix, Namespace: nsName},
    		), true},
    		{"mixture unmatched and unmatched config for sidecar", sidecar, sets.New(
    			model.ConfigKey{Kind: kind.DestinationRule, Name: drName + invalidNameSuffix, Namespace: nsName},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    	}{
    		{name: "simple destination rule", in: &networking.DestinationRule{
    			Host: "reviews",
    			Subsets: []*networking.Subset{
    				{Name: "v1", Labels: map[string]string{"version": "v1"}},
    				{Name: "v2", Labels: map[string]string{"version": "v2"}},
    			},
    		}, valid: true},
    
    		{name: "simple destination rule with empty selector labels", in: &networking.DestinationRule{
    			Host: "reviews",
    			Subsets: []*networking.Subset{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. tests/integration/security/egress_sidecar_tls_origination_test.go

    	ingressutil "istio.io/istio/tests/integration/security/sds_ingress/util"
    )
    
    // TestSidecarMutualTlsOrigination test MUTUAL TLS mode with TLS origination happening at the sidecar.
    // It uses CredentialName set in DestinationRule API to fetch secrets from k8s API server.
    func TestSidecarMutualTlsOrigination(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. 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)
Back to top