We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f59f0e commit 82f0747Copy full SHA for 82f0747
.github/workflows/scsctl_test.yml
@@ -41,9 +41,13 @@ jobs:
41
helm repo add pyroscope-io https://pyroscope-io.github.io/helm-chart
42
helm install pyroscope pyroscope-io/pyroscope
43
44
+ export POD_NAME=$(kubectl get pods --namespace default -l "app.kubernetes.io/name=pyroscope,app.kubernetes.io/instance=pyroscope" -o jsonpath="{.items[0].metadata.name}")
45
+ export CONTAINER_PORT=$(kubectl get pod --namespace default $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}")
46
+ kubectl --namespace default port-forward $POD_NAME 8080:$CONTAINER_PORT
47
+
48
kubectl get pods
49
- curl http://127.0.0.1:8080
50
+ curl http://localhost:8080
51
52
# - name: Install a python cli tool from test pypi and run it
53
# run: |
0 commit comments