Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 113 for destinationFile (0.36 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/xds/nds.go

    }
    
    var _ model.XdsResourceGenerator = &NdsGenerator{}
    
    // Map of all configs that do not impact NDS
    var skippedNdsConfigs = sets.New(
    	kind.Gateway,
    	kind.VirtualService,
    	kind.DestinationRule,
    	kind.Secret,
    	kind.Telemetry,
    	kind.EnvoyFilter,
    	kind.WorkloadEntry,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.PeerAuthentication,
    	kind.WasmPlugin,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.9K 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