Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for destinationFile (0.58 sec)

  1. tests/integration/security/file_mounted_certs/main_test.go

    }
    
    func setupApps(ctx resource.Context, customNs namespace.Getter, customCfg *[]echo.Config) error {
    	appsNamespace := customNs.Get()
    
    	// Server certificate has "server.file-mounted.svc" in SANs; Same is expected in DestinationRule.subjectAltNames for the test Echo server
    	// This cert is going to be used as a server and "client" certificate on the "Echo Server"'s side
    	err := CreateCustomSecret(ctx, ServerSecretName, appsNamespace, ServerCertsPath)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

    spec:
      group: networking.istio.io
      names:
        categories:
        - istio-io
        - networking-istio-io
        kind: DestinationRule
        listKind: DestinationRuleList
        plural: destinationrules
        shortNames:
        - dr
        singular: destinationrule
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - description: The name of a service from the service registry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  3. pilot/pkg/features/pilot.go

    			"we also match the ExternalName. In general, this mirrors Kubernetes behavior more closely. However, it means that policies (routes and DestinationRule) "+
    			"cannot be applied to the ExternalName service. "+
    			"If disabled, ExternalName behaves in fairly unexpected manner. Port matters, while it does not in Kubernetes. If it is a TCP port, "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.yaml

    spec:
      group: networking.istio.io
      names:
        categories:
        - istio-io
        - networking-istio-io
        kind: DestinationRule
        listKind: DestinationRuleList
        plural: destinationrules
        shortNames:
        - dr
        singular: destinationrule
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - description: The name of a service from the service registry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_tls_test.go

    				CredentialName: "fake-cred",
    			},
    			result: expectedResult{
    				nil,
    				nil,
    			},
    		},
    		{
    			name: "tls mode SIMPLE, CredentialName is set with proxy type Sidecar and destinationRule has workload Selector",
    			opts: &buildClusterOpts{
    				mutable:          newTestCluster(),
    				isDrWithSelector: true,
    			},
    			tls: &networking.ClientTLSSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. pilot/pkg/xds/ads.go

    		push = request.Push
    		if len(request.ConfigsUpdated) == 0 {
    			sidecar = true
    			gateway = true
    		}
    		for conf := range request.ConfigsUpdated {
    			switch conf.Kind {
    			case kind.ServiceEntry, kind.DestinationRule, kind.VirtualService, kind.Sidecar, kind.HTTPRoute, kind.TCPRoute, kind.TLSRoute, kind.GRPCRoute:
    				sidecar = true
    			case kind.Gateway, kind.KubernetesGateway, kind.GatewayClass, kind.ReferenceGrant:
    				gateway = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    spec:
      hosts:
      - "{{.Destination}}"
      http:
      - route:
        - destination:
            host: "{{.Destination}}"
            subset: v1
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: route
      namespace:
    spec:
      host: "{{.Destination}}"
      subsets:
      - labels:
          version: v1
        name: v1
      - labels:
          version: v2
        name: v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/context.go

    // push.Services can return the set of services from the proxyNode's
    // sidecar scope or from the push context's set of global services. Similar
    // logic applies to push.VirtualServices and push.DestinationRule. The
    // short cut here is useful only for CDS and parts of RDS generation code.
    //
    // Listener generation code will still use the SidecarScope object directly
    // as it needs the set of services for each listener port.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  9. pkg/istio-agent/agent_test.go

    metadata:
      name: app
      namespace: default
    spec:
      hosts:
      - app.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: plaintext
      namespace: default
    spec:
      host: app.com
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    `})
    	if bootstrapGenerator != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	cfg := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind:  gvk.DestinationRule,
    			Name:              "fakeDestinationRule",
    			Namespace:         "default",
    			Domain:            "cluster.local",
    			CreationTimestamp: GlobalTime,
    		},
    		Spec: &networking.DestinationRule{
    			Host: "fakehost",
    		},
    	}
    	_, err := store.Create(cfg)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top