Skip to content

Commit 8004639

Browse files
authored
Update setup docs (#552)
1 parent 25ece94 commit 8004639

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

docs/docs/how-tos/configure-keycloak-howto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ If you [changed the initial root password for Keycloak](#change-keycloak-root-pa
121121
To make adding users easier for new Nebari deployments, we've created a CLI command to help you.
122122

123123
```shell
124-
nebari keycloak -c nebari-config.yaml adduser <username> <password>
124+
nebari keycloak adduser -c nebari-config.yaml --user <username> <password>
125125
```
126126

127127
This will create a new user `<username>` under the `analyst` group, with the initial password provided. Omit the password completely if you are using GitHub or Auth0. It will also add a placeholder email (i.e. `username@your-domain`) to the **Email** field.

docs/docs/how-tos/nebari-local.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -192,12 +192,12 @@ If the deployment is successful, you will see the following output:
192192
```bash
193193
[terraform]: Nebari deployed successfully
194194
Services:
195-
- argo-workflows -> https://projectname.domain/argo/
196-
- conda_store -> https://projectname.domain/conda-store/
197-
- dask_gateway -> https://projectname.domain/gateway/
198-
- jupyterhub -> https://projectname.domain/
199-
- keycloak -> https://projectname.domain/auth/
200-
- monitoring -> https://projectname.domain/monitoring/
195+
- argo-workflows -> https://domain/argo/
196+
- conda_store -> https://domain/conda-store/
197+
- dask_gateway -> https://domain/gateway/
198+
- jupyterhub -> https://domain/
199+
- keycloak -> https://domain/auth/
200+
- monitoring -> https://domain/monitoring/
201201
Kubernetes kubeconfig located at file:///tmp/NEBARI_KUBECONFIG
202202
Kubecloak master realm username=root *****
203203
...
@@ -208,10 +208,10 @@ Kubecloak master realm username=root *****
208208
Finally, if everything is set properly you should be able to cURL the JupyterHub Server. Run
209209

210210
```
211-
curl -k https://projectname.domain/hub/login
211+
curl -k https://domain/hub/login
212212
```
213213
214-
It's also possible to visit `https://projectname.domain` in your web browser to select the deployment.
214+
It's also possible to visit `https://domain` in your web browser to select the deployment.
215215
As default for a local deployment the https certificates generated during deployments aren't signed by a recognized [Certificate Authority (CA)](https://en.wikipedia.org/wiki/Certificate_authority) and are self-signed by [Traefik](https://github.com/traefik/traefik) instead.
216216
217217
Several browsers makes it difficult to view a self-signed certificate that are not added to the certificate registry. So, if you do not want to use Let's Encrypt, you can use the following workarounds to properly view the pages:

0 commit comments

Comments
 (0)