diff --git a/deploy/kind/e2e/e2e-batch.yaml b/deploy/kind/e2e/e2e-batch.yaml index a4f7755a..473ae5b9 100644 --- a/deploy/kind/e2e/e2e-batch.yaml +++ b/deploy/kind/e2e/e2e-batch.yaml @@ -26,6 +26,8 @@ spec: env: - name: INV_HTTP_URL value: "kessel-inventory-service:8081" + - name: INV_GRPC_URL + value: "kessel-inventory-service:9081" - name: KAFKA_BOOTSTRAP_SERVERS value: "my-cluster-kafka-bootstrap:9092" command: ["/usr/local/bin/e2e-inventory-tests", "-test.v"] diff --git a/test/e2e/inventory_http_test.go b/test/e2e/grpc/inventory_http_test.go similarity index 99% rename from test/e2e/inventory_http_test.go rename to test/e2e/grpc/inventory_http_test.go index a9be7f96..2df59bde 100644 --- a/test/e2e/inventory_http_test.go +++ b/test/e2e/grpc/inventory_http_test.go @@ -1,4 +1,4 @@ -package e2e +package grpc import ( "context" diff --git a/test/e2e/grpc/inventory_grpc_test.go b/test/e2e/inventory_grpc_test.go similarity index 99% rename from test/e2e/grpc/inventory_grpc_test.go rename to test/e2e/inventory_grpc_test.go index caacb6d7..607b664d 100644 --- a/test/e2e/grpc/inventory_grpc_test.go +++ b/test/e2e/inventory_grpc_test.go @@ -1,4 +1,4 @@ -package grpc +package e2e import ( "context"