-
Task
-
Resolution: Done
-
Normal
-
1.4.0, 1.5.0
Currently, the process to change the logo in the Developer Hub is not fully documented. Specifically, the format required for the BASE64_EMBEDDED_FULL_LOGO environment variable is missing from the documentation. This task involves updating the documentation to include this information.
What needs to be added:
- Update app-config-rhdh.yaml Documentation:
- Add the following configuration details:
app: branding: fullLogo: ${BASE64_EMBEDDED_FULL_LOGO} iconLogo: ${BASE64_EMBEDDED_ICON_LOGO}
- Add the following configuration details:
-
- Ensure to clearly specify the format for BASE64_EMBEDDED_FULL_LOGO:
BASE64_EMBEDDED_FULL_LOGO: "data:image/svg+xml;base64,<file_base64>"
- Ensure to clearly specify the format for BASE64_EMBEDDED_FULL_LOGO:
- Provide Example:
SVGLOGOBASE64=$(base64 -i logo.svg)
BASE64_EMBEDDED_FULL_LOGO="data:image/png;base64,$SVGLOGOBASE64"