From 3ee962f1ac38f31d346f6af237fe9084c14d7860 Mon Sep 17 00:00:00 2001 From: Eddie Arrage Date: Wed, 11 Apr 2018 02:44:51 +0000 Subject: Modified validation script for tracing to support CI - Changed default Jaeger ports to 16686 for use with basic kubernetes port-forward and CI scripts - Added CLI to validate script to disable istio service check by default. This requires at least a single http request to istio-ingress after Jaeger deployment. It can be enabled with 'python validate.py -s'. Port and IP address for Jaeger can optionally be specified with '-ip' and '-port' options - Modified tracing doc to add k8s port-forward example in addition to k8s expose Change-Id: I10fb4d3cccfa50370d44ed7446f67a49c538bba9 Signed-off-by: Eddie Arrage --- clover/tracing/tracing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'clover/tracing/tracing.py') diff --git a/clover/tracing/tracing.py b/clover/tracing/tracing.py index 16b952c..f646268 100644 --- a/clover/tracing/tracing.py +++ b/clover/tracing/tracing.py @@ -10,7 +10,7 @@ import time import redis TRACING_IP = "localhost" -TRACING_PORT = "30888" +TRACING_PORT = "16686" class Tracing: -- cgit 1.2.3-korg