From 7b0dfe57afa293557930fd92603db95cc54810ff Mon Sep 17 00:00:00 2001 From: Tim Serong Date: Wed, 2 Aug 2023 18:09:42 +1000 Subject: [PATCH] Add publicDomain settings to example helm invocation 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 --- src/pages/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/index.js b/src/pages/index.js index 0c2c715..cecb33e 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -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