User interface configuration options

Privacy page

The UI has a privacy page with a completely configurable content, suited for showing any policy/terms related information, like the Privacy Policy Statement or the Terms of Use.

The content is read from a ConfigMap. You need to configure the values in ui.privacy.page to enable the feature and set the reference ConfigMap name and key. Both ui.privacy.enabled and ui.privacy.page.enabled need to be true for enabling the privacy page.

Note

If you don’t set the ConfigMap name and key, a sample will be used instead. You can start from it as a template to create your customized ConfigMap.

The Markdown syntax is fully supported for the privacy page content.

Dashboard message

The UI can display a configurable message for logged in users on their dashboard page, suited for showing general information about Renku.

This feature can be enabled and configured by editing the values found in ui.client.dashboardMessage. Set ui.client.dashboardMessage.enabled to true to have the message displayed on the dashboard page.

The content and appearance of the message are configured by editing the other values in ui.client.dashboardMessage:

  1. text: the main message displayed on the dashboard page. It supports Markdown syntax.

  2. additionalText: the additional message which users can read by clicking “Read more” button right below the main message.

  3. style: the appearance of the card used to display the dashboard message. Allowed values are: “plain”, “success”, “info”, “warning” and “danger”.

  4. dismissible: if it is set to true, users can dismiss the message and hide it until the tab is closed or refreshed.

An example configuration can be found in values.yaml in the renku-ui repository.