From ec1351061478657f217053cfb1c7bfabe1254be2 Mon Sep 17 00:00:00 2001 From: Karim Naufal Date: Tue, 5 Oct 2021 07:38:07 +0200 Subject: [PATCH] added nginx ingress --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c156b15..8d4b02c 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,8 @@ To get the path, of course, you could use the `pwd` command. To have a complete and useful setup, it is ideal to have an ingress controller running and it turns out that the Hetzner Cloud Controller allows us to automatically deploy a Hetzner Load Balancer that can be used by the ingress controller. We have chosen to use the Nginx ingress controller that you can install with the following command: ```sh +helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx +helm repo update helm install --values=manifests/helm/nginx/values.yaml ingress-nginx ingress-nginx/ingress-nginx -n kube-system ```