@@ -191,7 +191,7 @@ def _get_parts(self) -> Iterator[str]:
191191SCALITY_LOGO : Path = constants .UI_ASSETS / "login/logo.png"
192192SCALITY_FAVICON : Path = constants .UI_ASSETS / "login/favicon.png"
193193LOGIN_STYLE : Path = constants .UI_ASSETS / "login/styles.css"
194- UI_THEME_OPTIONS : Path = constants .UI_BRANDING / "theme.json"
194+ UI_THEME_OPTIONS : Path = constants .ROOT / "shell-ui" / "theme.json"
195195
196196# List of salt files to install.
197197SALT_FILES : Tuple [Union [Path , targets .AtomicTarget ], ...] = (
@@ -367,11 +367,18 @@ def _get_parts(self) -> Iterator[str]:
367367 Path ("salt/metalk8s/addons/ui/deployed/init.sls" ),
368368 Path ("salt/metalk8s/addons/ui/deployed/files/metalk8s-ui-deployment.yaml" ),
369369 Path ("salt/metalk8s/addons/ui/deployed/namespace.sls" ),
370+ Path ("salt/metalk8s/addons/ui/deployed/ui.sls" ),
371+ Path ("salt/metalk8s/addons/shell-ui/deployed/ingress.sls" ),
372+ Path ("salt/metalk8s/addons/shell-ui/deployed/init.sls" ),
373+ Path ("salt/metalk8s/addons/shell-ui/deployed/files/shell-ui-deployment.yaml" ),
374+ Path ("salt/metalk8s/addons/shell-ui/deployed/namespace.sls" ),
370375 targets .TemplateFile (
371- task_name = "salt/metalk8s/addons/ui/deployed/ui.sls" ,
372- source = constants .ROOT .joinpath ("salt/metalk8s/addons/ui/deployed/ui.sls.in" ),
376+ task_name = "salt/metalk8s/addons/shell-ui/deployed/shell-ui.sls" ,
377+ source = constants .ROOT .joinpath (
378+ "salt/metalk8s/addons/shell-ui/deployed/shell-ui.sls.in"
379+ ),
373380 destination = constants .ISO_ROOT .joinpath (
374- "salt/metalk8s/addons/ui/deployed/ui.sls"
381+ "salt/metalk8s/addons/shell- ui/deployed/shell- ui.sls"
375382 ),
376383 context = {
377384 "ThemeConfig" : textwrap .indent (
0 commit comments