Skip to content

General UI Settings


Many parts of the user interface can be hidden.

Here, you see the parts of the menu at the left:

User Interface Parts


In SEAL Operator, configure the keys for the user interface:

  1. Export the complete configuration of SEAL Operator from Consul to a YAML file in order to ensure that the current configuration settings are used.

    operator config export <filename>.yml --insecure
    
  2. Edit the exported file <filename>.yml.

  3. In the env section, specify the correspondent key for the seal-operator-ui service:

    Example - hide all parts of the left menu that can be hidden

    env:
      service:
        operator_ui:
          tag:
            any:
              ...
              DEFAULT_PANEL: operator-dpf
              DISABLE_MY_LISTS_ACCESS: true
              DISABLE_TASK_NOTIFICATIONS: true
              DISABLE_LATEST_TASKS: true
              DISABLE_ADD_PANEL: true
              ...
    
  4. Save the file <filename>.yml.

  5. Re-import it to Consul.

    operator config import <filename>.yml --insecure
    
  6. Close the user interface and open it again.


Literature - keys

For further information about available keys, refer to the Key Reference.


Back to top