Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 107 for destinationRule (0.5 sec)

  1. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    						internalClient[0].CallOrFail(t, opts)
    					})
    			}
    		})
    }
    
    const (
    	// Destination Rule configs
    	DestinationRuleConfigSimple = `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: originate-tls-for-server-filebased-simple
    spec:
      host: "external-service.{{.AppNamespace}}.svc.cluster.local"
      trafficPolicy:
        portLevelSettings:
          - port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. pilot/pkg/security/model/authentication.go

    	ResourceApiVersion: core.ApiVersion_V3,
    }
    
    // ConstructSdsSecretConfigForCredential constructs SDS secret configuration used
    // from certificates referenced by credentialName in DestinationRule or Gateway.
    // Currently this is served by a local SDS server, but in the future replaced by
    // Istiod SDS server.
    func ConstructSdsSecretConfigForCredential(name string, credentialSocketExist bool) *tls.SdsSecretConfig {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar_test.go

    			var serviceFound bool
    			var portsMatched bool
    			ps := NewPushContext()
    			meshConfig := mesh.DefaultMeshConfig()
    			ps.Mesh = meshConfig
    			ps.setDestinationRules([]config.Config{destinationRule1, destinationRule2, destinationRule3, nonWorkloadSelectorDr})
    			if tt.services != nil {
    				ps.ServiceIndex.public = append(ps.ServiceIndex.public, tt.services...)
    
    				for _, s := range tt.services {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/config/schema/gvr/resources.gen.go

    	DestinationRule                = schema.GroupVersionResource{Group: "networking.istio.io", Version: "v1alpha3", Resource: "destinationrules"}
    	DestinationRule_v1beta1        = schema.GroupVersionResource{Group: "networking.istio.io", Version: "v1beta1", 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)
Back to top