diff --git a/README.md b/README.md
index a1fb29e..6d59af8 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,14 @@
# snippets for k3s
* [Install k3s](#install-k3s)
+* [Disable Traefik-ingress](#disable-traefik-ingress)
+* [Enable NGINX-ingress](#enable-nginx-ingress)
+ * [Installation](#install-nginx-ingress)
+ * [Change service type from NodePort to LoadBalancer](#nginx-ingress-loadbalancer)
+ * [Enable nginx-ingress tcp- and udp-services for apps other than http/s](#nginx-ingress-tcp-udp-enabled)
+ * [Deploy my-nginx-service and expose via nginx-ingress on TCP-port 9000](#deploy-and-expose-tcp-service)
+ * [Stick the nginx-ingress controler and my-nginx app together](#stick-nginx-ingress-and-tcp-service)
+ * [Test exposed app on TCP-port 9000](#test-nginx-ingress-and-tcp-service)
## Install k3s
https://k3s.io/:
@@ -8,7 +16,7 @@ https://k3s.io/:
curl -sfL https://get.k3s.io | sh -
```
-## Disable traeffic-ingress:
+## Disable Traefik-ingress
edit /etc/systemd/system/k3s.service:
```
[...]
@@ -16,13 +24,13 @@ ExecStart=/usr/local/bin/k3s \
server --disable traefik \
[...]
```
-finally `systemctl daemon-reload` and `systemctl restart k3s`
+Finally `systemctl daemon-reload` and `systemctl restart k3s`
-## Enable nginx-ingress
-### Installation
+## Enable NGINX-ingress
+### Installation
https://kubernetes.github.io/ingress-nginx/deploy/#bare-metal
-### Change service type from NodePort to LoadBalancer
+### Change service type from NodePort to LoadBalancer
`kubectl edit service -n ingress-nginx` and change `type: NodePort` to `type: LoadBalancer`
Port 80 and 443 should listen now on an *External-IP* `kubectl get all --all-namespaces`:
@@ -46,7 +54,7 @@ dominik@muggler:~$ curl -s http://10.62.94.246