File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 99
99
endpoint_url : ${{env.ENDPOINT_URL}}
100
100
service_mesh : ${{env.SERVICE_MESH}}
101
101
load_generator : ${{ matrix.load-generator }}
102
- profile_name : ' ${{ matrix.service-mesh }}-${{ matrix.load-generator }}-${{ github.event.inputs.profile_filename }}${{ github.event.inputs.profile_name }}'
102
+ profile_name : ' ${{ matrix.service-mesh }}-${{ matrix.load-generator }}-${{ matrix.test-configuration }}'
103
103
test_name : ' ${{ steps.date.outputs.date }}'
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ linkerd install | kubectl apply -f -
16
16
linkerd check
17
17
18
18
curl -fsL https://run.linkerd.io/emojivoto.yml | kubectl apply -f -
19
- kubectl -n emojivoto port-forward svc/web-svc 8080:80 &
19
+ kubectl -n emojivoto port-forward svc/web-svc 8080:80 & > /dev/null &
20
20
kubectl get -n emojivoto deploy -o yaml | linkerd inject - | kubectl apply -f -
21
21
22
22
# Wait for the application to be ready
Original file line number Diff line number Diff line change @@ -20,6 +20,9 @@ osm install \
20
20
kubectl create namespace bookstore
21
21
osm namespace add bookstore
22
22
kubectl apply -f https://raw.githubusercontent.com/openservicemesh/osm/release-v0.11/docs/example/manifests/apps/bookstore.yaml
23
+
24
+ sleep 100
25
+
23
26
kubectl get deployments -n bookstore
24
27
kubectl get pods -n bookstore
25
28
@@ -36,7 +39,7 @@ if [ -z "$backend" ]; then
36
39
fi
37
40
38
41
POD=" $( kubectl get pods --selector app=" $backend " -n " $BOOKSTORE_NAMESPACE " --no-headers | grep ' Running' | awk ' NR==1{print $1}' ) "
39
- kubectl port-forward " $POD " -n " $BOOKSTORE_NAMESPACE " 15000:15000
42
+ kubectl port-forward " $POD " -n " $BOOKSTORE_NAMESPACE " 15000:15000 & > /dev/null &
40
43
41
44
echo " Service Mesh: $MESH_NAME - $SERVICE_MESH "
42
45
echo " Endpoint URL: http://localhost:15000"
You can’t perform that action at this time.
0 commit comments