Skip to content

Commit

Permalink
docs: fix refs
Browse files Browse the repository at this point in the history
  • Loading branch information
moabu committed Nov 7, 2024
1 parent 5444693 commit 8aae099
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_docker_linux_installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
max-parallel: 6
matrix:
# add '"pgsql" when supported
persistence-backends: ["MYSQL", "PGSQL", "LDAP", "COUCHBASE", "SPANNER"]
persistence-backends: ["MYSQL", "PGSQL", "COUCHBASE"]
python-version: ["3.7"]
fail-fast: false
steps:
Expand Down
3 changes: 1 addition & 2 deletions automation/rancher-partner-charts/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,10 @@ questions:
type: enum
group: "Persistence"
label: Gluu Persistence backend
description: "Persistence backend to run Gluu with couchbase|hybrid|sql|spanner"
description: "Persistence backend to run Gluu with couchbase|sql|"
options:
- "couchbase"
- "hybrid"
- "spanner"
- "sql"

# Hybrid
Expand Down
2 changes: 1 addition & 1 deletion automation/startjanssenmonolithdemo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if [[ ! "$JANS_FQDN" ]]; then
read -rp "Enter Hostname [demoexample.jans.io]: " JANS_FQDN
fi
if [[ ! "$JANS_PERSISTENCE" ]]; then
read -rp "Enter persistence type [MYSQL|PGSQL|COUCHBASE[TEST]|SPANNER[TEST]]: " JANS_PERSISTENCE
read -rp "Enter persistence type [MYSQL|PGSQL]: " JANS_PERSISTENCE
fi

if [[ -z $EXT_IP ]]; then
Expand Down
2 changes: 1 addition & 1 deletion docs/janssen-server/planning/components.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ assertions. This service must be Internet-facing.
persistence service to store configuration and other entity data (client,
person, scope, attribute, FIDO device, etc.) As different databases are
good for different deployments, Janssen supports a number of options:
MySQL, Postgres, Couchbase, Google Spanner, and Amazon Aurora. Other
MySQL, Postgres, Couchbase, and Amazon Aurora. Other
databases may be added in the future.

1. **Cache**: Getting data from a disk is still the slowest part of any
Expand Down
1 change: 0 additions & 1 deletion docs/janssen-server/planning/persistence.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ tags:
- MySQL
- Couchbase
- Aurora
- Spanner
- Postgres
- database
---
Expand Down
3 changes: 0 additions & 3 deletions docs/janssen-server/recipes/benchmark.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,13 +191,10 @@ Loading users requires a hefty but temporary amount of resources. By default, th
| `USER_NUMBER_STARTING_POINT` | The user number to start from . This is appended to the username i.e test_user0 | `0` |
| `USER_NUMBER_ENDING_POINT` | The user number to end at. | `50000000` |
| `LOAD_USERS_TO_COUCHBASE` | Enable loading users to Couchbase persistence. `true` or `false` == `` | `false` |
| `LOAD_USERS_TO_SPANNER` | Enable loading users to Spanner persistence. `true` or `false` == `` | `false` |
| `LOAD_USERS_TO_RDBMS` | Enable loading users to RDBMS persistence. `true` or `false` == `` | `false` |
| `USER_SPLIT_PARALLEL_THREADS` | The number of parallel threads to break the total number users across. This number heavily effects vCPU usage. | `20` |
| `GOOGLE_APPLICATION_CREDENTIALS` | Google Credentials JSON SA file. **Used with Spanner** | `` |
| `GOOGLE_PROJECT_ID` | Google Project ID. **Used with Spanner** | `` |
| `GOOGLE_SPANNER_INSTANCE_ID` | Google Spanner Instance ID. **Used with Spanner** | `` |
| `GOOGLE_SPANNER_DATABASE_ID` | Google Spanner Database ID. **Used with Spanner** | `` |
| `RDBMS_TYPE` | RDBMS type if `mysql` or `pgsql` is the persistence to load users in. | `mysql` |
| `RDBMS_DB` | RDBMS Database name if `mysql` or `pgsql` is the persistence to load users in. | `jans` |
| `RDBMS_USER` | RDBMS user if `mysql` or `pgsql` is the persistence to load users in. | `jans` |
Expand Down

0 comments on commit 8aae099

Please sign in to comment.