Skip to content

Commit 9ffea73

Browse files
committed
test forward update
1 parent 7cd5dae commit 9ffea73

File tree

2 files changed

+4
-17
lines changed

2 files changed

+4
-17
lines changed

.tekton/pipeline-service-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
- name: target_branch
3030
value: "{{ target_branch }}"
3131
- name: results_url
32-
value: "https://github.com/openshift-pipelines/tektoncd-results"
32+
value: "https://github.com/avinal/tektoncd-results"
3333
timeouts:
3434
pipeline: "1h0m0s"
3535
workspaces:

.tekton/tasks/tekton-results-upstream-e2e.yaml

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,7 @@ spec:
3636
for service_account in "${service_accounts[@]}"; do
3737
kubectl create token "$service_account" > "${SA_TOKEN_PATH}"/"$service_account"
3838
done
39-
RESULT_ROUTE=$(kubectl get route tekton-results -n tekton-results --template='{{.spec.host}}')
40-
cat <<EOF > patch-test-config.patch
41-
diff --git a/test/e2e/grpc_client.go b/test/e2e/grpc_client.go
42-
--- a/test/e2e/grpc_client.go
43-
+++ b/test/e2e/grpc_client.go
44-
@@ -36,4 +36,4 @@ const (
45-
certFile = "tekton-results-cert.pem"
46-
- apiServerName = "tekton-results-api-service.tekton-pipelines.svc.cluster.local"
47-
- apiServerAddress = "localhost:50051"
48-
+ apiServerName = "tekton-results-api-service.tekton-results.svc.cluster.local"
49-
+ apiServerAddress = "$RESULT_ROUTE"
50-
defCertFolder = "/tmp/tekton-results/ssl"
51-
52-
EOF
53-
git apply patch-test-config.patch
39+
export API_SERVER_NAME="tekton-results-api-service.tekton-results.svc.cluster.local"
40+
export API_SERVER_ADDR="https://$(kubectl get route tekton-results -n tekton-results --template='{{.spec.host}}'):443"
5441
export CGO_ENABLED=0
55-
go test -v -count=1 --tags=e2e ./test/e2e/...
42+
go test -v -count=1 --tags=e2e $(go list --tags=e2e ./test/e2e/... | grep -v /client)

0 commit comments

Comments
 (0)