- Setup Keycloak in non-HA mode (replica 1)
- Disable UserFederation
- You might have to increase the resource limits to avoid that pod beeing killed by memory or CPU limits
See Keycloak Documentation for more details.
| #!/bin/bash | |
| # Step 1: Obtain a list of our personal hosts. | |
| # Export from Bitwarden, LastPass, 1Password, or similar: | |
| my_passwords.txt | |
| # Next commands will assume the LastPass export format, which is CSV with the URL in the first field: | |
| # url,username,password,[... more fields] |
See Keycloak Documentation for more details.
| DEPTH = 6 | |
| LENGTH = 12 | |
| #Change me! | |
| def f(i): | |
| return i | |
| #also try: | |
| #return i**2 | |
| #return 2**i |