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.logLevel
to 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.enabled
to yourcustom_values.yaml
values file. Listing 7.14 shows an example. You can then access the interactive OpenAPI schema at the following URLs:https://scim.example.com/docs
https://scim.example.com/redoc
nubusScimServer: docu: enabled: true