From 58c4971ee3842e0717d1005bf77978759cb856a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Mon, 21 Dec 2020 12:59:15 +0100 Subject: [PATCH] Introduce better naming for volumes --- execution/README.md | 8 ++++---- .../{volumeSingle.yaml => volume-hostpath.yaml} | 0 .../kubernetes/{volumeCluster.yaml => volume-local.yaml} | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename execution/infrastructure/kubernetes/{volumeSingle.yaml => volume-hostpath.yaml} (100%) rename execution/infrastructure/kubernetes/{volumeCluster.yaml => volume-local.yaml} (100%) diff --git a/execution/README.md b/execution/README.md index d8f30d074..4630bffe6 100644 --- a/execution/README.md +++ b/execution/README.md @@ -153,11 +153,11 @@ declarations for different volume types. Using a [hostPath volume](https://kubernetes.io/docs/concepts/storage/volumes/#hostpath) is the easiest option when running Theodolite locally, e.g., with minikube or kind. -Just modify `infrastructure/kubernetes/volumeSingle.yaml` by setting `path` to the directory on your host machine where +Just modify `infrastructure/kubernetes/volume-hostpath.yaml` by setting `path` to the directory on your host machine where all benchmark results should be stored and run: ```sh -kubectl apply -f infrastructure/kubernetes/volumeSingle.yaml +kubectl apply -f infrastructure/kubernetes/volume-hostpath.yaml ``` ##### *local* volume @@ -166,12 +166,12 @@ A [local volume](https://kubernetes.io/docs/concepts/storage/volumes/#local) is access (e.g. via SSH) to one of your cluster nodes. You first need to create a directory on a selected node where all benchmark results should be stored. Next, modify -`infrastructure/kubernetes/volumeCluster.yaml` by setting `<node-name>` to your selected node (this node will most +`infrastructure/kubernetes/volume-local.yaml` by setting `<node-name>` to your selected node (this node will most likely also execute the job). Further, you have to set `path` to the directory on the node you just created. To deploy you volume run: ```sh -kubectl apply -f infrastructure/kubernetes/volumeCluster.yaml +kubectl apply -f infrastructure/kubernetes/volume-local.yaml ``` ##### Other volumes diff --git a/execution/infrastructure/kubernetes/volumeSingle.yaml b/execution/infrastructure/kubernetes/volume-hostpath.yaml similarity index 100% rename from execution/infrastructure/kubernetes/volumeSingle.yaml rename to execution/infrastructure/kubernetes/volume-hostpath.yaml diff --git a/execution/infrastructure/kubernetes/volumeCluster.yaml b/execution/infrastructure/kubernetes/volume-local.yaml similarity index 100% rename from execution/infrastructure/kubernetes/volumeCluster.yaml rename to execution/infrastructure/kubernetes/volume-local.yaml -- GitLab