diff --git a/README.md b/README.md
index be4c055..e873c25 100644
--- a/README.md
+++ b/README.md
@@ -7,9 +7,9 @@
* [On Docker with k3d](#install-k3s-on-docker-k3d)
* [Namespaces and resource limits](#namespaces-limits)
* [Persistent volumes (StorageClass - dynamic provisioning)](#pv)
- * [Rancher Local](#pv-local)
- * [Rancher Longhorn (distributed in local cluster) - MY FAVOURITE :-)](#pv-longhorn)
+ * [Rancher Local (k3s default)](#pv-local)
* [NFS](#pv-nfs)
+ * [Rancher Longhorn (distributed in local cluster) - MY FAVOURITE :-)](#pv-longhorn)
* [Ingress controller](#ingress-controller)
* [Disable Traefik-ingress](#disable-traefik-ingress)
* [Enable NGINX-ingress with OCSP stapling](#enable-nginx-ingress)
@@ -151,15 +151,10 @@ kubectl apply -f https://gitea.zwackl.de/dominik/k3s/raw/branch/master/namespace
# Persistent Volumes (StorageClass - dynamic provisioning)
Read more about [AccessModes](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes)
-## Rancher Local
+## Rancher Local (k3s default)
https://rancher.com/docs/k3s/latest/en/storage/
Only supports *AccessMode*: ReadWriteOnce (RWO)
-## Rancher Longhorn (distributed in local cluster) - MY FAVOURITE :-)
-* Requirements: https://longhorn.io/docs/0.8.0/install/requirements/
- * Debian: `apt install open-iscsi`
-* Install: https://rancher.com/docs/k3s/latest/en/storage/
-
## NFS
For testing purposes as well as simplicity you may use following [NFS container image](https://hub.docker.com/r/itsthenetwork/nfs-server-alpine):
```
@@ -214,6 +209,11 @@ spec:
requests:
storage: 32Mi
```
+## Rancher Longhorn (distributed in local cluster) - MY FAVOURITE :-)
+* Requirements: https://longhorn.io/docs/0.8.0/install/requirements/
+ * Debian: `apt install open-iscsi`
+* Install: https://rancher.com/docs/k3s/latest/en/storage/
+
# Ingress controller
## Disable Traefik-ingress