Troubleshooting

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 your custom_values.yaml. The logs are available in the container image log of the pod. Listing 7.13 shows an example.

Listing 7.13 Configure logging level of the Nubus SCIM Server.#
nubusScimServer:
  config:
    logLevel: "DEBUG"
Interactive OpenAPI schema

To activate the interactive OpenAPI schema, add nubusScimServer.docu.enabled to your custom_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

Listing 7.14 Activate interactive OpenAPI schema for Nubus SCIM Server#
nubusScimServer:
  docu:
    enabled: true