fix(nubus): Remove b64 encoded files from CSS, instead use opendesk-static-files
@@ -521,7 +521,7 @@ nubusPortalFrontend:
|
|||||||
favicon: {{ .Values.theme.imagery.portal.faviconIco | toJson }}
|
favicon: {{ .Values.theme.imagery.portal.faviconIco | toJson }}
|
||||||
# The actual `logo` is set in customizing image, the logo down here is for for waiting spinner.
|
# The actual `logo` is set in customizing image, the logo down here is for for waiting spinner.
|
||||||
logo: {{ .Values.theme.imagery.portal.waitingSpinnerSvg | toJson }}
|
logo: {{ .Values.theme.imagery.portal.waitingSpinnerSvg | toJson }}
|
||||||
backgroundImage: {{ .Values.theme.imagery.portal.logoBackgroundSvg | toJson }}
|
backgroundImage: {{ .Values.theme.imagery.portal.backgroundSvg | toJson }}
|
||||||
|
|
||||||
nubusStackDataUms:
|
nubusStackDataUms:
|
||||||
containerSecurityContext:
|
containerSecurityContext:
|
||||||
|
|||||||
@@ -25,7 +25,9 @@ assets:
|
|||||||
subdomain: {{ .Values.global.hosts.keycloak }}
|
subdomain: {{ .Values.global.hosts.keycloak }}
|
||||||
paths:
|
paths:
|
||||||
- path: "/resources/...../login/UCS/img/favicon.ico"
|
- path: "/resources/...../login/UCS/img/favicon.ico"
|
||||||
data: {{ .Values.theme.imagery.portal.faviconIco }}
|
data: {{ .Values.theme.imagery.login.faviconIco }}
|
||||||
|
- path: "/static-files/login/logo.svg"
|
||||||
|
data: {{ .Values.theme.imagery.login.logoSvg }}
|
||||||
nextcloud:
|
nextcloud:
|
||||||
subdomain: {{ .Values.global.hosts.nextcloud }}
|
subdomain: {{ .Values.global.hosts.nextcloud }}
|
||||||
paths:
|
paths:
|
||||||
@@ -55,6 +57,13 @@ assets:
|
|||||||
paths:
|
paths:
|
||||||
- path: "/favicon.ico"
|
- path: "/favicon.ico"
|
||||||
data: {{ .Values.theme.imagery.portal.faviconIco }}
|
data: {{ .Values.theme.imagery.portal.faviconIco }}
|
||||||
|
- path: "/static-files/portal/background.svg"
|
||||||
|
data: {{ .Values.theme.imagery.portal.backgroundSvg }}
|
||||||
|
- path: "/static-files/portal/waiting-spinner.svg"
|
||||||
|
data: {{ .Values.theme.imagery.portal.waitingSpinnerSvg }}
|
||||||
|
- path: "/static-files/login/background.jpg"
|
||||||
|
data: {{ .Values.theme.imagery.login.backgroundJpg }}
|
||||||
|
|
||||||
xwiki:
|
xwiki:
|
||||||
subdomain: {{ .Values.global.hosts.xwiki }}
|
subdomain: {{ .Values.global.hosts.xwiki }}
|
||||||
paths:
|
paths:
|
||||||
|
|||||||
@@ -49,6 +49,11 @@ theme:
|
|||||||
faviconIco: {{ readFile "./../../files/theme/files/favicon.ico" | b64enc | quote }}
|
faviconIco: {{ readFile "./../../files/theme/files/favicon.ico" | b64enc | quote }}
|
||||||
faviconPng: {{ readFile "./../../files/theme/files/favicon.png" | b64enc | quote }}
|
faviconPng: {{ readFile "./../../files/theme/files/favicon.png" | b64enc | quote }}
|
||||||
|
|
||||||
|
login:
|
||||||
|
faviconIco: {{ readFile "./../../files/theme/login/favicon.ico" | b64enc | quote }}
|
||||||
|
backgroundJpg: {{ readFile "./../../files/theme/login/background.jpg" | b64enc | quote }}
|
||||||
|
logoSvg: {{ readFile "./../../files/theme/login/logo.svg" | b64enc | quote }}
|
||||||
|
|
||||||
groupware:
|
groupware:
|
||||||
faviconIco: {{ readFile "./../../files/theme/groupware/favicon.ico" | b64enc | quote }}
|
faviconIco: {{ readFile "./../../files/theme/groupware/favicon.ico" | b64enc | quote }}
|
||||||
faviconSvg: {{ readFile "./../../files/theme/groupware/favicon.svg" | b64enc | quote }}
|
faviconSvg: {{ readFile "./../../files/theme/groupware/favicon.svg" | b64enc | quote }}
|
||||||
@@ -62,8 +67,8 @@ theme:
|
|||||||
|
|
||||||
portal:
|
portal:
|
||||||
faviconIco: {{ readFile "./../../files/theme/portal/favicon.ico" | b64enc | quote }}
|
faviconIco: {{ readFile "./../../files/theme/portal/favicon.ico" | b64enc | quote }}
|
||||||
waitingSpinnerSvg: {{ readFile "./../../files/theme/portal/waitingSpinner.svg" | b64enc }}
|
waitingSpinnerSvg: {{ readFile "./../../files/theme/portal/waiting-spinner.svg" | b64enc }}
|
||||||
logoBackgroundSvg: {{ readFile "./../../files/theme/empty.svg" | b64enc | quote }}
|
backgroundSvg: {{ readFile "./../../files/theme/portal/background.svg" | b64enc | quote }}
|
||||||
portalTiles:
|
portalTiles:
|
||||||
adminAnnouncement: {{ readFile "./../../files/theme/portal-tiles/admin_announcement.svg" | b64enc | quote }}
|
adminAnnouncement: {{ readFile "./../../files/theme/portal-tiles/admin_announcement.svg" | b64enc | quote }}
|
||||||
adminContext: {{ readFile "./../../files/theme/portal-tiles/admin_context.svg" | b64enc | quote }}
|
adminContext: {{ readFile "./../../files/theme/portal-tiles/admin_context.svg" | b64enc | quote }}
|
||||||
|
|||||||
BIN
helmfile/files/theme/login/background.jpg
Normal file
|
After Width: | Height: | Size: 100 KiB |
BIN
helmfile/files/theme/login/favicon.ico
Normal file
|
After Width: | Height: | Size: 49 KiB |
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 100 B After Width: | Height: | Size: 100 B |
|
Before Width: | Height: | Size: 707 B After Width: | Height: | Size: 707 B |