Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Add publicDomain settings to example helm invocation
Browse files Browse the repository at this point in the history
If publicDomain and ui.publicDomain aren't specified somehow
(whether via `--set ...` or `-f values.yaml`), the installation
will fail with "Please provide a value for `.Values.publicDomain`"
and "Please provide a value for `.Values.ui.publicDomain`".  We
can at least hint at this need in advance by suggesting to use
YOUR_IP_ADDRESS.sslip.io in both cases.

Signed-off-by: Tim Serong <[email protected]>
  • Loading branch information
tserong committed Aug 2, 2023
1 parent 2fd527e commit 7b0dfe5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ function Landing() {
`
# Helm chart
helm repo add s3gw https://aquarist-labs.github.io/s3gw-charts/
helm install s3gw s3gw/s3gw --namespace s3gw-system --create-namespace
helm install s3gw s3gw/s3gw --namespace s3gw-system --create-namespace \\
--set publicDomain=YOUR_IP_ADDRESS.sslip.io \\
--set ui.publicDomain=YOUR_IP_ADDRESS.sslip.io
# Docker
docker pull quay.io/s3gw/s3gw:latest
Expand Down

0 comments on commit 7b0dfe5

Please sign in to comment.