Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for destinationFile (0.2 sec)

  1. tests/integration/security/egress_gateway_origination_test.go

    	ingressutil "istio.io/istio/tests/integration/security/sds_ingress/util"
    )
    
    // TestSimpleTlsOrigination test SIMPLE TLS mode with TLS origination happening at Gateway proxy
    // It uses CredentialName set in DestinationRule API to fetch secrets from k8s API server
    func TestSimpleTlsOrigination(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleNetwork(). // https://github.com/istio/istio/issues/37134
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  8. 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)
  9. pkg/config/schema/kubeclient/resources.gen.go

    	case gvr.DaemonSet:
    		return &k8sioapiappsv1.DaemonSet{}
    	case gvr.Deployment:
    		return &k8sioapiappsv1.Deployment{}
    	case gvr.DestinationRule:
    		return &apiistioioapinetworkingv1alpha3.DestinationRule{}
    	case gvr.EndpointSlice:
    		return &k8sioapidiscoveryv1.EndpointSlice{}
    	case gvr.Endpoints:
    		return &k8sioapicorev1.Endpoints{}
    	case gvr.EnvoyFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. pkg/config/schema/gvr/resources.gen.go

    	DaemonSet                      = schema.GroupVersionResource{Group: "apps", Version: "v1", Resource: "daemonsets"}
    	Deployment                     = schema.GroupVersionResource{Group: "apps", Version: "v1", Resource: "deployments"}
    	DestinationRule                = schema.GroupVersionResource{Group: "networking.istio.io", Version: "v1alpha3", 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