From 4245ef3cbf276ca4fc1c15afc837f0751be06c78 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de>
Date: Fri, 3 Dec 2021 17:32:26 +0100
Subject: [PATCH] Fix quickstart guide for latest version

---
 docs/quickstart.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/quickstart.md b/docs/quickstart.md
index 2ad3824a6..cfec74f9a 100644
--- a/docs/quickstart.md
+++ b/docs/quickstart.md
@@ -22,14 +22,14 @@ All you need to get started is access to a Kubernetes cluster plus kubectl and H
 
     ```sh
     git clone https://github.com/cau-se/theodolite.git
-    cd theodolite/theodolite/examples/
+    cd theodolite/theodolite/examples/operator/
     ```
 
 1. Deploy the example Benchmark and package its associated Kubernetes resources in a ConfigMap:
 
     ```sh
-    kubectl apply -f operator/example-benchmark.yaml
-    kubectl create configmap benchmark-resources-custom --from-file=./resources -o yaml --dry-run=client | kubectl apply -f -
+    kubectl apply -f example-benchmark.yaml
+    kubectl apply -f example-configmap.yaml
     ```
 
 1. Verify that the Benchmark has been deployed successfully:
@@ -48,7 +48,7 @@ All you need to get started is access to a Kubernetes cluster plus kubectl and H
 1. Run the Benchmark by deploying an Execution:
 
     ```sh
-    kubectl apply -f operator/example-execution.yaml 
+    kubectl apply -f example-execution.yaml 
     ```
 
 1. Verify that the Executions is running:
@@ -61,7 +61,7 @@ All you need to get started is access to a Kubernetes cluster plus kubectl and H
 
     ```
     NAME                           STATUS    DURATION   AGE
-    theodolite-example-execution   RUNNING   13s        14s
+    theodolite-example-execution   Running   13s        14s
     ```
 
     Theodolite provides additional information on the current status of an Execution by producing Kubernetes events. To see them:
-- 
GitLab