Vinicius D. Cerutti

Results 345 comments of Vinicius D. Cerutti

## Action items - [x] Validate JSON payloads for each keycloak endpoint: - Make sure there's enough data to create a copy of the Keycloak service "state" from one cluster...

## Quick updates: > Validate JSON payloads for each keycloak endpoint: - User credentials might not be included in the user payload objects. This is due to how Keycloak's password...

```python import json from functools import cached_property import psycopg from psycopg.rows import dict_row class KeycloakPasswordFetcher: @cached_property def pg_connection(self): """Establish a direct connection to the Keycloak PostgreSQL database.""" return psycopg.connect( f"dbname={KEYCLOAK_DATABASE_NAME}...

Based on what have been discussed above this is the general layout of how the keycloak import/export connectors will look like: ```python import os import json import requests import requests_cache...

This was moved to the implementation phase and now works as expected. #2657 will handle the required modifications to make it available on nebari