Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestExternalService (0.17 sec)

  1. tests/integration/pilot/common/traffic.go

    	RunCase("destinationrule", destinationRuleCases)
    	RunCase("vm", VMTestCases(apps.VM))
    	RunSkipAmbient("dns", DNSTestCases, "https://github.com/istio/istio/issues/48614")
    	RunCase("externalservice", TestExternalService)
    }
    
    func ExpectString(got, expected, help string) error {
    	if got != expected {
    		return fmt.Errorf("got unexpected %v: got %q, wanted %q", help, got, expected)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    					To: c.to,
    					Port: echo.Port{
    						Name: "http",
    					},
    					Address: c.host,
    					Check:   checker,
    				},
    			})
    		}
    	}
    }
    
    func TestExternalService(t TrafficContext) {
    	// Let us enable outboundTrafficPolicy REGISTRY_ONLY
    	// on one of the workloads, to verify selective external connectivity
    	SidecarScope := fmt.Sprintf(`apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top