Skip to content

Commit

Permalink
Improvements on Documentation suggested by code reviews
Browse files Browse the repository at this point in the history
Signed-off-by: Alfredo Gutierrez <[email protected]>
  • Loading branch information
AlfredoG87 committed Mar 26, 2024
1 parent 82a3348 commit 83465b4
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions charts/auth-layer-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,24 @@ To install the Authentication Layer Server, run the following commands:

- Install the chart, using the custom values file provided in the `values.yaml` file
```bash
helm dependency update
helm install htg-auth-server .
```

### Helm Chart Overrides

#### Admin Password

Define a custom password, use `auth.adminPassword` like this:
Define a custom password, use `keycloak.auth.adminPassword` like this:
```bash
helm install htg-auth-server . --set auth.adminPassword=yourpassword
helm install htg-auth-server . --set keycloak.auth.adminPassword=yourpassword
```

#### Client Secret

Define a custom client secret, use `auth.clientSecret` like this:
Define a custom client secret, use `clientSecret` like this:
```bash
helm install htg-auth-server . --set auth.clientSecret=yourclientsecret
helm install htg-auth-server . --set clientSecret=yourclientsecret
```

if setting the client secret from an umbrella chart and need to re-use the same client secret for other charts is recommended to use the `global.auth.clientSecret` property.
Expand Down Expand Up @@ -80,7 +81,7 @@ You will need to port-forward the KeyCloak service to access the admin console.
kubectl port-forward service/htg-auth-server-keycloak 8080:80
```
#### Login to the Admin Console
Access console on the following URK: `http://localhost:8080/admin/master/console/#/HederaTheGraph`
Access console on the following URK: http://localhost:8080/admin/master/console/#/HederaTheGraph

Login with the following credentials:
- Username: `admin`
Expand Down

0 comments on commit 83465b4

Please sign in to comment.