Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 225 for destinationFile (0.6 sec)

  1. tests/integration/ambient/testdata/no-peer-authn.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "default"
      annotations:
        test-suite: "no-peer-authn"
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 213 bytes
    - Viewed (0)
  2. tests/integration/security/filebased_tls_origination/destination_rule_tls_test.go

    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    )
    
    // TestDestinationRuleTls tests that MUTUAL tls mode is respected in DestinationRule.
    // This sets up a client and server with appropriate cert config and ensures we can successfully send a message.
    func TestDestinationRuleTls(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_waypoint.go

    				clusters = append(clusters, cb.buildWaypointInboundVIPCluster(proxy, svc, *port, "http").build())
    			}
    			cfg := cb.sidecarScope.DestinationRule(model.TrafficDirectionInbound, proxy, svc.Hostname).GetRule()
    			if cfg != nil {
    				destinationRule := cfg.Spec.(*networking.DestinationRule)
    				for _, ss := range destinationRule.Subsets {
    					if port.Protocol.IsUnsupported() || port.Protocol.IsTCP() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. tests/testdata/config/destination-rule-locality.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: locality
      namespace: default
    spec:
      host: locality.cluster.local
      trafficPolicy:
        outlierDetection:
          interval: 1s
          baseEjectionTime: 3m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 26 15:06:45 UTC 2020
    - 263 bytes
    - Viewed (0)
  5. tests/testdata/config/destination-rule-fqdn.yaml

    # Fails if a service with the name exists: trusted_ca required !
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: fqdn
      namespace: testns
    spec:
      host: www.webinf.info
      trafficPolicy:
        loadBalancer:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 261 bytes
    - Viewed (0)
  6. tests/testdata/config/destination-rule-passthrough.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: drpassthrough
      namespace: testns
    spec:
      host: "*.foo.com"
      trafficPolicy:
        loadBalancer:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 202 bytes
    - Viewed (0)
  7. releasenotes/notes/35333.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 28 18:44:27 UTC 2021
    - 207 bytes
    - Viewed (0)
  8. releasenotes/notes/destination-rule-workload-selector.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
       - |
         **Added** Support for WorkloadSelector in DestinationRule.
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 29 14:16:21 UTC 2022
    - 234 bytes
    - Viewed (0)
  9. tests/integration/ambient/testdata/beta-mtls-on.yaml

    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-on"
    spec:
      mtls:
        mode: STRICT
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-on"
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 384 bytes
    - Viewed (0)
  10. samples/bookinfo/networking/destination-rule-reviews.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: reviews
    spec:
      host: reviews
      trafficPolicy:
        loadBalancer:
          simple: RANDOM
      subsets:
      - name: v1
        labels:
          version: v1
      - name: v2
        labels:
          version: v2
      - name: v3
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 307 bytes
    - Viewed (0)
Back to top