Skip to content

Configure the Default Panel


The default panel is the one opened when opening the user interface and no panel yet exists.


In SEAL Operator, configure the default panel:

  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. In the env section, specify the key for the seal-operator-ui service:

    • DEFAULT_PANEL: Panel that is opened when opening the user interface and no panel yet exists

    Example - open a DPF panel by default

    env:
      service:
        operator_ui:
          tag:
            any:
              ...
              DEFAULT_PANEL: operator-dpf
              ...
    
  3. Save the file <filename>.yml and re-import it to Consul.

    operator config import <filename>.yml --insecure
    
  4. Close the user interface, SEAL Print Client, and open it again.


Literature - keys

For further information about the available keys, refer to the description of the Keys.


Back to top