From f40743d48408ebc536c9135c09594f0848296caf Mon Sep 17 00:00:00 2001 From: Mariusz Sabath Date: Wed, 16 Aug 2023 10:27:27 -0400 Subject: [PATCH] Improve Tornjak documentation (#439) --- examples/tornjak/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/examples/tornjak/README.md b/examples/tornjak/README.md index 4108c3b..913ccc8 100644 --- a/examples/tornjak/README.md +++ b/examples/tornjak/README.md @@ -15,7 +15,7 @@ helm upgrade --install --namespace spire-server \ --values ../production/values.yaml \ --values ./values.yaml \ --render-subchart-notes \ - spire charts/spire + spire ../../charts/spire # test the Tornjak deployment helm test spire -n spire-server @@ -27,8 +27,13 @@ To access Tornjak you will have to use port-forwarding for the time being *(unti Run following commands from your shell, if you ran with different values your namespace might differ. Consult the install notes printed when running above `helm upgrade` command in that case. +Since `port-forward` is a blocking command, execute them in two different consoles: + ```shell kubectl -n spire-server port-forward service/spire-tornjak-backend 10000:10000 +``` + +```shell kubectl -n spire-server port-forward service/spire-tornjak-frontend 3000:3000 ```