Enable outlier detection k8s interop test for Java >= 1.49.x (#30668)

* Enable outlier detection k8s interop test for Java. (#30641)

* xDS interop: enable outlier detection Java tests in >= 1.49.x

Co-authored-by: Terry Wilson <terrymwilson@gmail.com>
pull/30411/head
Sergii Tkachenko 2 years ago committed by GitHub
parent 72e76f6a86
commit 0a150b246b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      tools/run_tests/xds_k8s_test_driver/tests/outlier_detection_test.py

@ -64,6 +64,8 @@ class OutlierDetectionTest(xds_k8s_testcase.RegularXdsKubernetesTestCase):
def is_supported(config: skips.TestConfig) -> bool:
if config.client_lang in _Lang.CPP | _Lang.PYTHON:
return config.version_gte('v1.48.x')
if config.client_lang == _Lang.JAVA:
return config.version_gte('v1.49.x')
if config.client_lang == _Lang.NODE:
return config.version_gte('v1.6.x')
return False

Loading…
Cancel
Save