Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve code clarity for quickstart #587

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@ The Tornjak HTTP server is running on port 10000 on the pod. This can easily be
```console
kubectl -n spire port-forward spire-server-0 10000:10000
```
💡 Tip: For the following steps to work, run the above command in a new terminal window or tab, depending on your setup.

You'll see something like this:

Expand Down Expand Up @@ -459,7 +460,7 @@ If you chose to deploy Tornjak with the UI, connecting to the UI is very simple.
You will need to deploy the separate frontend separately to access the exposed Tornjak backend. We have prebuilt the frontend in a container, so we can simply run it via a single docker command in a separate terminal, which will take a couple minutes to run:

```console
docker run -p 3000:3000 -e REACT_APP_API_SERVER_URI='http://localhost:10000' ghcr.io/spiffe/tornjak-frontend:latest
docker run -p 3000:3000 -e REACT_APP_API_SERVER_URI='http://localhost:10000' ghcr.io/spiffe/tornjak-frontend:v2.0.0
```

After the image is downloaded, you will eventually see the following output:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
periodSeconds: 5
### 👈 BEGIN ADDITIONAL CONTAINER ###
- name: tornjak-backend
image: ghcr.io/spiffe/tornjak-backend:v1.9.0
image: ghcr.io/spiffe/tornjak-backend:v2.0.0
args:
- --spire-config
- /run/spire/config/server.conf
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.0.0
v2.1.0