Skip to content
Snippets Groups Projects
Commit 58c4971e authored by Sören Henning's avatar Sören Henning
Browse files

Introduce better naming for volumes

parent 441ef33e
No related branches found
No related tags found
No related merge requests found
Pipeline #1471 passed
This commit is part of merge request !78. Comments created here will be created in the context of that merge request.
...@@ -153,11 +153,11 @@ declarations for different volume types. ...@@ -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 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. 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: all benchmark results should be stored and run:
```sh ```sh
kubectl apply -f infrastructure/kubernetes/volumeSingle.yaml kubectl apply -f infrastructure/kubernetes/volume-hostpath.yaml
``` ```
##### *local* volume ##### *local* volume
...@@ -166,12 +166,12 @@ A [local volume](https://kubernetes.io/docs/concepts/storage/volumes/#local) is ...@@ -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. 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 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 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: you volume run:
```sh ```sh
kubectl apply -f infrastructure/kubernetes/volumeCluster.yaml kubectl apply -f infrastructure/kubernetes/volume-local.yaml
``` ```
##### Other volumes ##### Other volumes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment