Skip to content

Commit

Permalink
Merge pull request grpc#7877 from adelez/route_to_gfe
Browse files Browse the repository at this point in the history
Use the VIP that routes to GFE.
  • Loading branch information
nicolasnoble authored Sep 1, 2016
2 parents 9d7e049 + 96ace25 commit 19bfb53
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion tools/jenkins/run_full_interop.sh → tools/jenkins/run_full_cloud_prod.sh
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,14 @@
# This script is invoked by Jenkins and runs interop test suite.
set -ex

export LANG=en_US.UTF-8

# Enter the gRPC repo root
cd $(dirname $0)/../..

tools/run_tests/run_interop_tests.py -l all -s all --cloud_to_prod --cloud_to_prod_auth --prod_servers default cloud_gateway gateway_v2 cloud_gateway_v2 gateway_v4 cloud_gateway_v4 --use_docker --http2_interop -t -j 12 $@ || true
tools/run_tests/run_interop_tests.py \
-l all \
--cloud_to_prod \
--cloud_to_prod_auth \
--prod_servers default cloud_gateway gateway_v4 cloud_gateway_v4 \
--use_docker -t -j 12 $@ || true
6 changes: 3 additions & 3 deletions tools/run_tests/run_interop_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,15 +623,15 @@ def aggregate_http2_results(stdout):
# TODO(adelez): implement logic for errors_allowed where if the indicated tests
# fail, they don't impact the overall test result.
prod_servers = {
'default': ('grpc-test.sandbox.googleapis.com',
'default': ('216.239.32.254',
'grpc-test.sandbox.googleapis.com', False),
'gateway_v2': ('grpc-test2.sandbox.googleapis.com',
'gateway_v2': ('216.239.32.254',
'grpc-test2.sandbox.googleapis.com', True),
'cloud_gateway': ('216.239.32.255', 'grpc-test.sandbox.googleapis.com',
False),
'cloud_gateway_v2': ('216.239.32.255', 'grpc-test2.sandbox.googleapis.com',
True),
'gateway_v4': ('grpc-test4.sandbox.googleapis.com',
'gateway_v4': ('216.239.32.254',
'grpc-test4.sandbox.googleapis.com', True),
'cloud_gateway_v4': ('216.239.32.255', 'grpc-test4.sandbox.googleapis.com',
True),
Expand Down

0 comments on commit 19bfb53

Please sign in to comment.