Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for destinationFile (0.21 sec)

  1. tests/integration/pilot/istioctl_test.go

    	// details.
    	describeSvcAOutput = regexp.MustCompile(`(?s)Service: a\..*
       Port: http 80/HTTP targets pod port 18080
    .*
    80:
       DestinationRule: a\..* for "a"
          Matching subsets: v1
          No Traffic Policy
    `)
    
    	describePodAOutput = describeSvcAOutput
    )
    
    // This test requires `--istio.test.env=kube` because it tests istioctl doing PodExec
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. tests/integration/pilot/analyze_test.go

    	"istio.io/istio/tests/integration/helm"
    )
    
    const (
    	gatewayFile          = "testdata/gateway.yaml"
    	jsonGatewayFile      = "testdata/gateway.json"
    	destinationRuleFile  = "testdata/destinationrule.yaml"
    	virtualServiceFile   = "testdata/virtualservice.yaml"
    	invalidFile          = "testdata/invalid.yaml"
    	invalidExtensionFile = "testdata/invalid.md"
    	dirWithConfig        = "testdata/some-dir/"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/mesh_network_test.go

    						client.ExpectWithWeight(&workload{kind: sc.expectKind, name: name, namespace: "test", port: port}, subset, eps...)
    					}
    					configObjects := `
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: subset-se
      namespace: test
    spec:
      host: "*"
      subsets:
      - name: v1
        labels:
          version: v1
      - name: v2
        labels:
          version: v2
      - name: v3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
Back to top