From 43251ec34773c5df2f692f1424812d6e018e472a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Sat, 5 Mar 2022 15:06:17 +0100 Subject: [PATCH] Avoid kubectl warning, fix #348 --- docs/running-benchmarks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/running-benchmarks.md b/docs/running-benchmarks.md index 0a76316c0..5051cb5b6 100644 --- a/docs/running-benchmarks.md +++ b/docs/running-benchmarks.md @@ -130,7 +130,7 @@ If [persisting results](installation#persisting-results) is enabled in Theodolit For installations without persistence, but also as an alternative for installations with persistence, we provide a second option to access results: Theodolite comes with a *results access sidecar*. It allows to copy all benchmark results from the Theodolite pod to your current working directory on your host machine with the following command: ```sh -kubectl cp $(kubectl get pod -l app=theodolite -o jsonpath="{.items[0].metadata.name}"):/results . -c results-access +kubectl cp $(kubectl get pod -l app=theodolite -o jsonpath="{.items[0].metadata.name}"):results . -c results-access ``` ## Analyzing Benchmark Results -- GitLab