7.3.6. Troubleshooting#
Important
The Nubus SCIM Server is in an early state with limited configuration capability. For detailed limitations, see Limitations.
This section provides information about troubleshooting, such as debugging and testing, for the Nubus SCIM Server. For example, you can increase the logging level, or activate the interactive OpenAPI schema to test the Nubus SCIM Server.
- Logging level
To adjust the logging level, add
nubusScimServer.config.logLevelto yourcustom_values.yaml. The logs are available in the container image log of the pod. Listing 7.13 shows an example.nubusScimServer: config: logLevel: "DEBUG"
- Interactive OpenAPI schema
To activate the interactive OpenAPI schema, add
nubusScimServer.docu.enabledto yourcustom_values.yamlvalues file. Listing 7.14 shows an example. You can then access the interactive OpenAPI schema at the following URLs:https://scim.example.com/docshttps://scim.example.com/redoc
nubusScimServer: docu: enabled: true